MapperLoadFlags Enumeration |
Namespace:
NetQuarry.Data
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax [FlagsAttribute]
public enum MapperLoadFlags
<FlagsAttribute>
Public Enumeration MapperLoadFlags
Members
| Member name | Value | Description |
---|
| Schema | 1 | The mapper's fields should be created per the structure of this DataTable. |
| Data | 2 | The mapper's data should be populated from this DataTable rather than the mapper's standard query. |
| NoExtensions | 4 | The extensions collection should not be loaded. This should ONLY be used for diagnostic or code generation support. |
| AllowInsert | 16 | Normally when Data is specified the mapper is locked for Insert/Update/Delete. This flag tells the mapper not to lock for Insert. |
| AllowUpdate | 32 | Normally when Data is specified the mapper is locked for Insert/Update/Delete. This flag tells the mapper not to lock for Update. |
| AllowDelete | 64 | Normally when Data is specified the mapper is locked for Insert/Update/Delete. This flag tells the mapper not to lock for Delete. |
| CodeGeneration | 128 | Mapper is being loaded for the purposes of Code Generation. |
| ForUIOnly | 256 | Mapper is not being used to provide a user interface only, not to manage database CRUD. |
See Also