Skip to main content
.NET Framework 4.5.2+
  • The page you are viewing does not exist in the .NET Standard 2.0+ platform documentation. This link will take you to the parent topic of the current section.

EFDataView Constructors

A lightweight read-only list of data records (a data view) retrieved from a database without loading complete Entity Framework objects. Can be queried much more quickly than a real objects collection.
Name Parameters Description
EFDataView(EFObjectSpace, Type, IList<DataViewExpression>, CriteriaOperator, IList<SortProperty>) objectSpace, objectType, expressions, criteria, sorting Initializes a new instance of the EFDataView class with the specified settings. Data view columns are specified via the IList<DataViewExpression> list.
EFDataView(EFObjectSpace, Type, String, CriteriaOperator, IList<SortProperty>) objectSpace, objectType, expressions, criteria, sorting 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.
See Also