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.

13 lines
286 B

7 months ago
using SqlSugar;
5 months ago
namespace Repository;
internal static class SqlSugarExtensions
7 months ago
{
5 months ago
internal static ISugarQueryable<T> WithNoLockOrNot<T>(this ISugarQueryable<T> query, bool @lock = false)
7 months ago
{
5 months ago
if (@lock) query = query.With(SqlWith.NoLock);
7 months ago
5 months ago
return query;
7 months ago
}
5 months ago
}