Click or drag to resize

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
Members
  Member nameValueDescription
Schema1The mapper's fields should be created per the structure of this DataTable.
Data2The mapper's data should be populated from this DataTable rather than the mapper's standard query.
NoExtensions4The extensions collection should not be loaded. This should ONLY be used for diagnostic or code generation support.
AllowInsert16Normally when Data is specified the mapper is locked for Insert/Update/Delete. This flag tells the mapper not to lock for Insert.
AllowUpdate32Normally when Data is specified the mapper is locked for Insert/Update/Delete. This flag tells the mapper not to lock for Update.
AllowDelete64Normally when Data is specified the mapper is locked for Insert/Update/Delete. This flag tells the mapper not to lock for Delete.
CodeGeneration128Mapper is being loaded for the purposes of Code Generation.
ForUIOnly256Mapper is not being used to provide a user interface only, not to manage database CRUD.
See Also