Click or drag to resize

MapperCloneFlags Enumeration

Options for the Clone(IMapper, MapperCloneFlags) method.

Namespace:  NetQuarry.Data
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
[FlagsAttribute]
public enum MapperCloneFlags
Members
  Member nameValueDescription
OmitFilters1Do not clone the current filters when cloning the mapper. Note that when this option is used the mapper will NOT be requeried automatically.
FilterOnSelectedKeys2Filter the clone on the selected keys in the original mapper.
NoRequery4Do not requery the clone. Normally the clone is requeried if and only if OmitFilters is NOT specified.
NoFlavorCopy8Do not copy the flavors from the source mapper.
OmitSort16Do not clone the current sort when cloning the mapper.
IncludeGrouping32Include grouping in the current sort when cloning the mapper. Ignored if OmitSort is set.
See Also