Click or drag to resize

TypedMapper.Attach<T> Method

Creates a new instance of the specified class (a TypedMapper dervirative) and attaches it to the mapper. You should generally not call Close() on the returned TypedMapper object as that TypedMapper is a wrapper on the provided IMapper object to which it is attached (no new mapper is instantiated). Calling Close() on the TypedMapper would in turn call Close() on the attached mapper.

Namespace:  NetQuarry.Data
Assembly:  EAP.Mapper (in EAP.Mapper.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public static T Attach<T>(
	IMapper mapper
)
where T : new(), TypedMapper

Parameters

mapper
Type: NetQuarry.Data.IMapper
The mapper to attach to the new object

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' attached to the mapper.
See Also