Click or drag to resize

TypedMapperCloneT Method

Creates a cloned mapper and positions it to before the first row.

Namespace:  NetQuarry.Data
Assembly:  EAP.Mapper (in EAP.Mapper.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public T Clone<T>(
	MapperCloneFlags mcf = MapperCloneFlags.FilterOnSelectedKeys,
	Flavors flavors = 
)
where T : new(), TypedMapper

Parameters

mcf (Optional)
Type: NetQuarry.DataMapperCloneFlags
MapperCloneFlags to use during the clone. By default, FilterOnSelectedKeys is used.
flavors (Optional)
Type: NetQuarry.DataFlavors
Flavors to use in the clone. By default, flavors are copied from the source mapper.

Type Parameters

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

Return Value

Type: T
A clone of the mapper.
See Also