Click or drag to resize

SQLHelperFlags Enumeration

Flags specifying how a SQL statement is to be constructed by the SQL helper classes.

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
[FlagsAttribute]
public enum SQLHelperFlags
Members
  Member nameValueDescription
NoLock1Generate the SQL with a NOLOCK hint (SQL-Server) or similar.
RowLock2Generate the SQL with a ROWLOCK hint (SQL-Server) or similar.
NoRowLock4Generate the SQL without a ROWLOCK hint (or similar) where the hint would otherwise be used (SQL-Server).
See Also