mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-20 02:29:39 +08:00
InSingle Bug
This commit is contained in:
@@ -167,6 +167,7 @@ namespace SqlSugar
|
||||
|
||||
public virtual T InSingle(object pkValue)
|
||||
{
|
||||
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 = In(pkValue).ToList();
|
||||
if (list == null) return default(T);
|
||||
else return list.SingleOrDefault();
|
||||
|
Reference in New Issue
Block a user