You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
513 B

2 years ago
  1. namespace SqlSugar
  2. {
  3. public partial class SqlWith
  4. {
  5. public const string NoLock = "WITH(NOLOCK) ";
  6. public const string HoldLock = "WITH(HOLDLOCK)";
  7. public const string PagLock = "WITH(PAGLOCK)";
  8. public const string ReadCommitted = "WITH(READCOMMITTED)";
  9. public const string TabLockX = "WITH(TABLOCKX)";
  10. public const string UpdLock = "WITH(UPDLOCK)";
  11. public const string RowLock = "WITH(ROWLOCK)";
  12. public const string Null = "Non";
  13. }
  14. }