Click or drag to resize

DataAccessAdapterCore.FetchTypedView 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.12.0.0 (5.12.0)
Syntax
public void FetchTypedView(
	ITypedView2 typedViewToFill,
	IRelationPredicateBucket filterBucket,
	bool allowDuplicates
)

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. Use the TypedList's method GetRelationInfo() to retrieve this bucket.
allowDuplicates
Type: System.Boolean
When true, it will not filter out duplicate rows, otherwise it will DISTINCT duplicate rows.

Implements

IDataAccessAdapter.FetchTypedView(ITypedView2, IRelationPredicateBucket, Boolean)
See Also