Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

XPCollection<T> Class

A generic type collection of persistent objects.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v19.1.dll

Declaration

public class XPCollection<T> :
    XPBaseCollection,
    IList<T>,
    ICollection<T>,
    IEnumerable<T>,
    IEnumerable

Type Parameters

Name
T

Remarks

The XPCollection<T> class is a collection of persistent objects, much like the XPCollection. The only difference is that the XPCollection<T> is a generic type collection, which contains persistent objects as specified by T, and as a result, the collection cannot be used as a data source at design time.

Example:


XPCollection<Person> persons = new XPCollection<Person>(session1, 
    CriteriaOperator.Parse("FirstName = 'John'"));

As with the XPCollection, the XPCollection<T> is used to query data stores for specific objects and to represent the “many” end of object associations.

Implements

See Also