From 382743fdf41644aa333eabb2dd282c7a631c5068 Mon Sep 17 00:00:00 2001 From: sunkaixuan <610262374@qq.com> Date: Fri, 8 Sep 2023 09:50:15 +0800 Subject: [PATCH] Update SqlWith --- Src/Asp.Net/SqlSugar/Entities/SqlWith.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Src/Asp.Net/SqlSugar/Entities/SqlWith.cs b/Src/Asp.Net/SqlSugar/Entities/SqlWith.cs index 0d7876ef8..516f3b9b1 100644 --- a/Src/Asp.Net/SqlSugar/Entities/SqlWith.cs +++ b/Src/Asp.Net/SqlSugar/Entities/SqlWith.cs @@ -15,6 +15,7 @@ namespace SqlSugar public const string TabLockX = "WITH(TABLOCKX)"; public const string UpdLock = "WITH(UPDLOCK)"; public const string RowLock = "WITH(ROWLOCK)"; + public const string ReadPast = "WITH(READPAST)"; public const string Null = "Non"; } }