mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2026-02-27 16:50:33 +08:00
Code optimization
This commit is contained in:
@@ -2367,7 +2367,8 @@ namespace SqlSugar
|
||||
{
|
||||
FieldName=this.SqlBuilder.GetTranslationColumnName(whereCol.DbColumnName),
|
||||
ConditionalType= ConditionalType.In,
|
||||
FieldValue=string.Join(",",inValues.Distinct())
|
||||
FieldValue=string.Join(",",inValues.Distinct()),
|
||||
CSharpTypeName=whereCol.PropertyInfo.PropertyType.Name
|
||||
}
|
||||
};
|
||||
var list = this.Context.Queryable<TObject>().Where(wheres).ToList();
|
||||
|
||||
Reference in New Issue
Block a user