Optimized code

This commit is contained in:
sunkaixuan 2023-02-21 11:51:57 +08:00
parent 4ebb372efd
commit cf6d6e9c17

View File

@ -27,6 +27,10 @@ namespace SqlSugar
public virtual async Task<T> InSingleAsync(object pkValue)
{
if (pkValue == null)
{
return default(T);
}
Check.Exception(this.QueryBuilder.SelectValue.HasValue(), "'InSingle' and' Select' can't be used together,You can use .Select(it=>...).Single(it.id==1)");
var list = await In(pkValue).ToListAsync();
if (list == null) return default(T);