Click or drag to resize
IDataAccessAdapterFetchTypedView Method (ITypedView2, 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, doesn't apply any filtering. 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
void FetchTypedView(
	ITypedView2 typedViewToFill,
	bool allowDuplicates
)

Parameters

typedViewToFill
Type: SD.LLBLGen.Pro.ORMSupportClassesITypedView2
Typed view to fill.
allowDuplicates
Type: SystemBoolean
When true, it will not filter out duplicate rows, otherwise it will DISTINCT duplicate rows.
See Also