| IDataAccessAdapterFetchTypedView Method (ITypedView2, IRelationPredicateBucket, Int32, Boolean) | 
 
            Fetches the Typed View passed in from the persistent storage 
            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.8.0.0 (5.8.21.0111)
 Syntax
Syntaxvoid FetchTypedView(
	ITypedView2 typedViewToFill,
	IRelationPredicateBucket filterBucket,
	int maxNumberOfItemsToReturn,
	bool allowDuplicates
)
Sub FetchTypedView ( 
	typedViewToFill As ITypedView2,
	filterBucket As IRelationPredicateBucket,
	maxNumberOfItemsToReturn As Integer,
	allowDuplicates As Boolean
)
Parameters
- typedViewToFill
- Type: SD.LLBLGen.Pro.ORMSupportClassesITypedView2
 Typed view to fill.
- filterBucket
- Type: SD.LLBLGen.Pro.ORMSupportClassesIRelationPredicateBucket
 filter information (relations and predicate expressions) for retrieving the data. 
            Use the TypedList's method GetRelationInfo() to retrieve this bucket.
- maxNumberOfItemsToReturn
- Type: SystemInt32
 The maximum amount of rows to return. If 0, all rows matching the filter are returned
- allowDuplicates
- Type: SystemBoolean
 When true, it will not filter out duplicate rows, otherwise it will DISTINCT duplicate rows.
 See Also
See Also