mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-12-26 22:25:49 +08:00
Update BUG
This commit is contained in:
@@ -106,7 +106,7 @@ namespace SqlSugar
|
||||
foreach (var columnInfo in columnInfos)
|
||||
{
|
||||
string fileName = columnInfo.DbColumnName ?? columnInfo.PropertyName;
|
||||
if (columnInfo.IsIgnore)
|
||||
if (columnInfo.IsIgnore&& !this.ReaderKeys.Any(it=>it.Equals(fileName,StringComparison.CurrentCultureIgnoreCase)))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
@@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("5.0")]
|
||||
[assembly: AssemblyFileVersion("5.0")]
|
||||
[assembly: AssemblyVersion("5.0.0.1")]
|
||||
[assembly: AssemblyFileVersion("5.0.0.1")]
|
||||
|
||||
Reference in New Issue
Block a user