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
14 lines
513 B
namespace SqlSugar
|
|
{
|
|
public partial class SqlWith
|
|
{
|
|
public const string NoLock = "WITH(NOLOCK) ";
|
|
public const string HoldLock = "WITH(HOLDLOCK)";
|
|
public const string PagLock = "WITH(PAGLOCK)";
|
|
public const string ReadCommitted = "WITH(READCOMMITTED)";
|
|
public const string TabLockX = "WITH(TABLOCKX)";
|
|
public const string UpdLock = "WITH(UPDLOCK)";
|
|
public const string RowLock = "WITH(ROWLOCK)";
|
|
public const string Null = "Non";
|
|
}
|
|
}
|