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

XpoDataView(XPObjectSpace, Type, String, CriteriaOperator, IList<SortProperty>) Constructor

Initializes a new instance of the XpoDataView class with the specified settings. Data view columns are specified using the semicolon-separated list of expression strings. For internal use only.

Namespace: DevExpress.ExpressApp.Xpo

Assembly: DevExpress.ExpressApp.Xpo.v19.2.dll

Declaration

public XpoDataView(
    XPObjectSpace objectSpace,
    Type objectType,
    string expressions,
    CriteriaOperator criteria,
    IList<SortProperty> sorting
)

Parameters

Name Type Description
objectSpace XPObjectSpace

An XPObjectSpace object used to access data in XAF applications based on XPO data model.

objectType Type

The Type of requested persistent objects.

expressions String

A string that contains a semicolon separated list of expressions that specify data view column values.

criteria CriteriaOperator

A CriteriaOperator object that specifies criteria associated with the data view.

sorting IList<SortProperty>

An IList<SortProperty> collection whose elements identify the sorted columns within the data view.

See Also