IDataAccessAdapter.FetchTypedView 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.ORMSupportClassesAssembly: SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.0.0.0 (5.0.0)
Syntaxvoid FetchTypedView(
ITypedView2 typedViewToFill,
bool allowDuplicates
)
Sub FetchTypedView (
typedViewToFill As ITypedView2,
allowDuplicates As Boolean
)
Parameters
- typedViewToFill
- Type: SD.LLBLGen.Pro.ORMSupportClasses.ITypedView2
Typed view to fill. - allowDuplicates
- Type: System.Boolean
When true, it will not filter out duplicate rows, otherwise it will DISTINCT duplicate rows.
See Also