- 修复 ISelect Include 多表字段名相同(不区分大小时)时的 bug;

This commit is contained in:
28810 2020-09-20 18:47:00 +08:00
parent 72dedc992c
commit fc8a0da48f

View File

@ -384,7 +384,7 @@ namespace FreeSql.Internal.CommonProvider
//typeof(Topic).GetMethod("get_Type").IsVirtual
var field = new StringBuilder();
var dicfield = new Dictionary<string, bool>();
var dicfield = new Dictionary<string, bool>(StringComparer.CurrentCultureIgnoreCase);
var tb = _tables.First();
var index = 0;
@ -526,7 +526,7 @@ namespace FreeSql.Internal.CommonProvider
//typeof(Topic).GetMethod("get_Type").IsVirtual
var field = new StringBuilder();
var dicfield = new Dictionary<string, bool>();
var dicfield = new Dictionary<string, bool>(StringComparer.CurrentCultureIgnoreCase);
var tb = _tables.First();
var index = 0;
var otherindex = 0;