Skip to main content
.NET 6.0+

XPBaseCollection.SkipReturnedObjects Property

Gets or sets the number of objects to exclude when populating the collection with objects from a data store.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

[DefaultValue(0)]
public int SkipReturnedObjects { get; set; }

Property Value

Type Default Description
Int32 0

An integer value that specifies the number of objects to exclude when populating the collection. 0 indicates that objects are not excluded.

Remarks

If the property value is greater than 0, then the collection skips the first SkipReturnedObjects objects which match the collection’s XPBaseCollection.Criteria, and retrieves the number of objects specified by the XPBaseCollection.TopReturnedObjects property. So, SkipReturnedObjects is applied before XPBaseCollection.TopReturnedObjects.

Note

Use the SkipReturnedObjects property to adjust an XPCollection‘s object retrieval options before it’s loaded. Once a collection is loaded, changing this property has no effect. To make the changes take effect, you need to manually reload the collection. When an XPCollection is created using a constructor with the criteriaEvaluationBehavior parameter, it is loaded immediately. So, changing the SkipReturnedObjects property will also have no effect.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the SkipReturnedObjects property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also