Click or drag to resize
DataAccessAdapterCoreFetchTypedView 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.3.0.0 (5.3.0)
Syntax
public void FetchTypedView(
	ITypedView2 typedViewToFill,
	IRelationPredicateBucket filterBucket,
	bool allowDuplicates
)

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.

Implements

IDataAccessAdapterFetchTypedView(ITypedView2, IRelationPredicateBucket, Boolean)
See Also