mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-19 10:08:19 +08:00
Synchronization code
This commit is contained in:
@@ -1294,6 +1294,10 @@ namespace SqlSugar
|
||||
}
|
||||
}
|
||||
}
|
||||
if (tableName == null)
|
||||
{
|
||||
tableName = entity.DbTableName;
|
||||
}
|
||||
return tableName;
|
||||
}
|
||||
protected string AppendSelect(List<EntityColumnInfo> entityColumnInfos,string sql, ReadOnlyCollection<ParameterExpression> parameters, List<EntityColumnInfo> columnsResult, int parameterIndex1)
|
||||
|
@@ -411,7 +411,7 @@ namespace SqlSugar
|
||||
Type type = item.GetType();
|
||||
PropertyInfo field = type.GetProperty("exp", flag);
|
||||
Type ChildType = item.type;
|
||||
var entityInfo = this.Context.EntityMaintenance.GetEntityInfo(ChildType);
|
||||
var entityInfo = this.Context.EntityMaintenance.GetEntityInfoWithAttr(ChildType);
|
||||
var exp = field.GetValue(item, null) as Expression;
|
||||
var isMain = ChildType == this.EntityType||(ChildType.IsInterface&& this.EntityType.GetInterfaces().Any(it => it == ChildType));
|
||||
var isSingle = IsSingle();
|
||||
|
Reference in New Issue
Block a user