Enum TableSetFlags
A set of flags that dictate the behavior of a TableSet object.
[Flags]
public enum TableSetFlags
- Extension Methods
Fields
GenerateSql = 1Indicates that TableSet should use its own methods to generate Sql statements for the table tree.
NoCascadeDeletes = 4Indicates that deletes should happen top to bottom, so if any database foreign constraint exists, then let an exception to be thrown.
None = 0None of the flags is set
PessimisticMode = 2Indicates that pessimistic mode should be used. That is to flag a row in the database while it is selected and de-flag it when saved/deleted.