TypedMapperOpenT Method (IAppContext, String, Flavors) | 
  
    Namespace: 
   NetQuarry.Data
    Assembly:
   EAP.Mapper (in EAP.Mapper.dll) Version: 2.0.0.0 (4.6.8.0)
Syntaxpublic static T Open<T>(
	IAppContext appCxt,
	string rowFilter,
	Flavors flavors
)
where T : new(), TypedMapper
Public Shared Function Open(Of T As {New, TypedMapper}) ( 
	appCxt As IAppContext,
	rowFilter As String,
	flavors As Flavors
) As TParameters
- appCxt
 - Type: NetQuarryIAppContext
The application context object - rowFilter
 - Type: SystemString
The filter to use during Requery - flavors
 - Type: NetQuarry.DataFlavors
Flavors 
Type Parameters
- T
 - The class type for the object. This should be your topmost derived class.
 
Return Value
Type: 
TA new instance of T positioned at the specified record. Use 
HasRecords to determine if the query returned rows.
See Also