mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-22 10:42:52 +08:00
- 修复 ISelect Include 多表字段名相同(不区分大小时)时的 bug;
This commit is contained in:
parent
72dedc992c
commit
fc8a0da48f
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user