Subquery Mapping bug

This commit is contained in:
sunkaixuan
2019-01-11 20:55:51 +08:00
parent 6eafdd2fb5
commit 5753377cdf

View File

@@ -48,6 +48,8 @@ namespace SqlSugar
var newContext = context.GetCopyContext(); var newContext = context.GetCopyContext();
newContext.MappingColumns = context.MappingColumns; newContext.MappingColumns = context.MappingColumns;
newContext.MappingTables = context.MappingTables; newContext.MappingTables = context.MappingTables;
newContext.InitMappingInfo = context.InitMappingInfo;
newContext.RefreshMapping = context.RefreshMapping;
newContext.IgnoreComumnList = context.IgnoreComumnList; newContext.IgnoreComumnList = context.IgnoreComumnList;
newContext.SqlFuncServices = context.SqlFuncServices; newContext.SqlFuncServices = context.SqlFuncServices;
newContext.Resolve(item, type); newContext.Resolve(item, type);