mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2026-02-26 21:53:04 +08:00
Optimized code
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user