TypedMapperOpenT Method (IAppContext, String) | 
  
    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
)
where T : new(), TypedMapper
Public Shared Function Open(Of T As {New, TypedMapper}) ( 
	appCxt As IAppContext,
	rowFilter As String
) As TParameters
- appCxt
 - Type: NetQuarryIAppContext
The application context object - rowFilter
 - Type: SystemString
The filter to use during Requery 
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