IDataAccessAdapter.FetchTypedView Method (IEntityFields2, DataTable, IRelationPredicateBucket, Int32, Boolean) |
Fetches the Typed View fields passed in fieldCollectionToFetch from the persistent storage using the filter information stored in
filterBucket into the DataTable object passed in. Doesn't apply any sorting
Use this routine to fill a TypedView object.
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.2.0.0 (5.2.17.0403)
Syntaxvoid FetchTypedView(
IEntityFields2 fieldCollectionToFetch,
DataTable dataTableToFill,
IRelationPredicateBucket filterBucket,
int maxNumberOfItemsToReturn,
bool allowDuplicates
)
Sub FetchTypedView (
fieldCollectionToFetch As IEntityFields2,
dataTableToFill As DataTable,
filterBucket As IRelationPredicateBucket,
maxNumberOfItemsToReturn As Integer,
allowDuplicates As Boolean
)
Parameters
- fieldCollectionToFetch
- Type: SD.LLBLGen.Pro.ORMSupportClasses.IEntityFields2
IEntityField2 collection which contains the fields of the typed view to fetch into the datatable. - dataTableToFill
- Type: System.Data.DataTable
The datatable object to fill with the data for the fields in fieldCollectionToFetch - filterBucket
- Type: SD.LLBLGen.Pro.ORMSupportClasses.IRelationPredicateBucket
filter information (relations and predicate expressions) for retrieving the data.
Use the TypedList's method GetRelationInfo() to retrieve this bucket. - maxNumberOfItemsToReturn
- Type: System.Int32
The maximum amount of rows to return. If 0, all rows matching the filter are returned - allowDuplicates
- Type: System.Boolean
When true, it will not filter out duplicate rows, otherwise it will DISTINCT duplicate rows.
See Also