Click or drag to resize

TypedMapperAttachExisting Method

Attaches an existing mapper to this class. You should generally not call Close on the this TypedMapper object as the TypedMapper will be 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 void AttachExisting(
	IMapper mapper
)

Parameters

mapper
Type: NetQuarry.DataIMapper
The mapper to attach to this object.
See Also