DataTableRetrievalFlags Enumeration |
DataTable retrieval flags for use with IMapper.Exec(MapperExecCmds.RetrieveDataTable, DataTableRetrievalFlags).
Namespace:
NetQuarry.Data
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax [FlagsAttribute]
public enum DataTableRetrievalFlags
<FlagsAttribute>
Public Enumeration DataTableRetrievalFlags
Members
| Member name | Value | Description |
---|
| IncludeData | 1 |
Include data in the DataTable (vs. schema only). Currently really only affects
the result when LiveTable is specified in combination with Clone. Data is always
included when LiveTable is specified without Clone, and never when LiveData is
not specified.
|
| LiveTable | 2 |
Return the DataTable object being used to provide live data to them mapper
(when a DataTable was provided programmatically rather than allowing the mapper
to query for its own data). May be combined with the Clone flag. If the mapper
is not using a live DataTable object, null will be returned. Unless cloned, if
a live DataTable is being used by the mapper, it will always be populated with data.
|
| Clone | 4 |
Applies only when the LiveTable flag is specified in which case the LiveTable will
be cloned and returned (with data if so specified).
|
| DisplayText | 8 |
Create a new table and populate the entire mapper with display text values for the fields. You MUST
specify BiDirectional when the mapper is created or this method will fail.
|
Remarks Note that not all flag combinations are valid.
See Also