IDataAccessAdapterFetchTypedView Method (ITypedView2, IRelationPredicateBucket, Boolean) | 
 
            Fetches the Typed View passed in from the persistent storage 
            Doesn't apply any sorting, doesn't limit the amount of rows returned by the query.
            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.5.0.0 (5.5.18.1019)
Syntaxvoid FetchTypedView(
	ITypedView2 typedViewToFill,
	IRelationPredicateBucket filterBucket,
	bool allowDuplicates
)
Sub FetchTypedView ( 
	typedViewToFill As ITypedView2,
	filterBucket As IRelationPredicateBucket,
	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. - allowDuplicates
 - Type: SystemBoolean
When true, it will not filter out duplicate rows, otherwise it will DISTINCT duplicate rows. 
See Also