mirror of
				https://github.com/nsnail/FreeSql.git
				synced 2025-11-04 17:20:49 +08:00 
			
		
		
		
	- 修复 ISelect Include 多表字段名相同(不区分大小时)时的 bug;
This commit is contained in:
		@@ -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;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user