mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-07-30 22:10:22 +08:00
Update core
This commit is contained in:
parent
9dce130127
commit
9a67f7d896
@ -243,7 +243,11 @@ namespace SqlSugar
|
||||
FieldValue=string.Join(",",mappingList.Select(z=>UtilMethods.GetPropertyValue(z,m_bPropertyName)).Distinct())
|
||||
}
|
||||
};
|
||||
var bList = this.Context.Queryable<BType>().Where(cons).ToList();
|
||||
List<BType> bList = new List<BType>();
|
||||
if (mappingList.Any())
|
||||
{
|
||||
bList=this.Context.Queryable<BType>().Where(cons).ToList();
|
||||
}
|
||||
|
||||
//get result
|
||||
Dictionary<object, List<BType>> result = new Dictionary<object, List<BType>>();
|
||||
|
Loading…
Reference in New Issue
Block a user