DataAccessAdapterCore.FetchTypedView Method (ITypedView2, IRelationPredicateBucket, Int32, ISortExpression, Boolean) |
Fetches the Typed View passed in from the persistent storage
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntaxpublic void FetchTypedView(
ITypedView2 typedViewToFill,
IRelationPredicateBucket filterBucket,
int maxNumberOfItemsToReturn,
ISortExpression sortClauses,
bool allowDuplicates
)
Public Sub FetchTypedView (
typedViewToFill As ITypedView2,
filterBucket As IRelationPredicateBucket,
maxNumberOfItemsToReturn As Integer,
sortClauses As ISortExpression,
allowDuplicates As Boolean
)
Parameters
- typedViewToFill
- Type: SD.LLBLGen.Pro.ORMSupportClasses.ITypedView2
Typed view to fill. - filterBucket
- Type: SD.LLBLGen.Pro.ORMSupportClasses.IRelationPredicateBucket
filter information (relations and predicate expressions) for retrieving the data. - maxNumberOfItemsToReturn
- Type: System.Int32
The maximum amount of rows to return. If 0, all rows matching the filter are returned - sortClauses
- Type: SD.LLBLGen.Pro.ORMSupportClasses.ISortExpression
SortClause expression which is applied to the query executed, sorting the fetch result. - allowDuplicates
- Type: System.Boolean
When true, it will not filter out duplicate rows, otherwise it will DISTINCT duplicate rows.
Implements
IDataAccessAdapter.FetchTypedView(ITypedView2, IRelationPredicateBucket, Int32, ISortExpression, Boolean)
RemarksTo fill a DataTable with entity rows, use this method as well, by passing the Fields collection of an entity of the same type
as the one you want to fetch as fieldCollectionToFetch.
See Also