Click or drag to resize

TypedMapper.Open<T> Method (IAppContext, String, Flavors, MapperAttrs)

Namespace:  NetQuarry.Data
Assembly:  EAP.Mapper (in EAP.Mapper.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public static T Open<T>(
	IAppContext appCxt,
	string rowFilter,
	Flavors flavors,
	MapperAttrs mapperAttributes
)
where T : new(), TypedMapper

Parameters

appCxt
Type: NetQuarry.IAppContext
The application context object
rowFilter
Type: System.String
The filter to use during Requery
flavors
Type: NetQuarry.Data.Flavors
Flavors
mapperAttributes
Type: NetQuarry.Data.MapperAttrs
Attributes

Type Parameters

T
The class type for the object. This should be your topmost derived class.

Return Value

Type: T
A new instance of T positioned at the specified record. Use HasRecords to determine if the query returned rows.
See Also