Click or drag to resize
DataAccessAdapterCore.FetchTypedView Method (IEntityFields2, DataTable)
Fetches the Typed View fields passed in fieldCollectionToFetch from the persistent storage into the DataTable object passed in. Doesn't apply any sorting, doesn't limit the amount of rows returned by the query, doesn't apply any filtering, allows duplicate rows. 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.1.0.0 (5.1.0)
Syntax
public void FetchTypedView(
	IEntityFields2 fieldCollectionToFetch,
	DataTable dataTableToFill
)

Parameters

fieldCollectionToFetch
Type: SD.LLBLGen.Pro.ORMSupportClasses.IEntityFields2
IEntityField2 collection which contains the fields of the typed view to fetch into the datatable.
dataTableToFill
Type: System.Data.DataTable
The datatable object to fill with the data for the fields in fieldCollectionToFetch

Implements

IDataAccessAdapter.FetchTypedView(IEntityFields2, DataTable)
See Also