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
Public Function Clone(Of T As {New, TypedMapper}) (
Optional mcf As MapperCloneFlags = MapperCloneFlags.FilterOnSelectedKeys,
Optional flavors As Flavors =
) As T
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:
TA clone of the mapper.
See Also