Skip to main content
A newer version of this page is available.

EFDataView(EFObjectSpace, Type, String, CriteriaOperator, IList<SortProperty>) Constructor

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

Namespace: DevExpress.ExpressApp.EF

Assembly: DevExpress.ExpressApp.EF.v18.2.dll

Declaration

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

Parameters

Name Type Description
objectSpace EFObjectSpace

An EFObjectSpace object used to access data in XAF applications based on Entity Framework data model.

objectType Type

The Type of requested entity 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