diff --git a/Src/Asp.Net/SqlSugar/Abstract/DynamicBuilder/Helper.cs b/Src/Asp.Net/SqlSugar/Abstract/DynamicBuilder/Helper.cs index 6dbb6b911..835f18422 100644 --- a/Src/Asp.Net/SqlSugar/Abstract/DynamicBuilder/Helper.cs +++ b/Src/Asp.Net/SqlSugar/Abstract/DynamicBuilder/Helper.cs @@ -76,7 +76,12 @@ namespace SqlSugar attributeType.GetProperty(nameof(SugarColumn.SqlParameterDbType)), attributeType.GetProperty(nameof(SugarColumn.SqlParameterSize)), attributeType.GetProperty(nameof(SugarColumn.IsArray)), - attributeType.GetProperty(nameof(SugarColumn.ColumnName)) + attributeType.GetProperty(nameof(SugarColumn.ColumnName)), + attributeType.GetProperty(nameof(SugarColumn.InsertSql)), + attributeType.GetProperty(nameof(SugarColumn.UpdateSql)), + attributeType.GetProperty(nameof(SugarColumn.ExtendedAttribute)), + attributeType.GetProperty(nameof(SugarColumn.IsDisabledAlterColumn)), + attributeType.GetProperty(nameof(SugarColumn.IsOwnsOne)) } , new object[] { sugarTable.IsPrimaryKey, @@ -96,7 +101,12 @@ namespace SqlSugar sugarTable.SqlParameterDbType, sugarTable.SqlParameterSize, sugarTable.IsArray, - sugarTable.ColumnName + sugarTable.ColumnName, + sugarTable.InsertSql, + sugarTable.UpdateSql, + sugarTable.ExtendedAttribute, + sugarTable.IsDisabledAlterColumn, + sugarTable.IsOwnsOne }); return attributeBuilder; } diff --git a/Src/Asp.Net/SqlSugar/Abstract/SugarProvider/SqlSugarAccessory.cs b/Src/Asp.Net/SqlSugar/Abstract/SugarProvider/SqlSugarAccessory.cs index 633e84033..eb8291d8f 100644 --- a/Src/Asp.Net/SqlSugar/Abstract/SugarProvider/SqlSugarAccessory.cs +++ b/Src/Asp.Net/SqlSugar/Abstract/SugarProvider/SqlSugarAccessory.cs @@ -523,6 +523,7 @@ namespace SqlSugar if (this.CurrentConnectionConfig.MoreSettings == null) this.CurrentConnectionConfig.MoreSettings = new ConnMoreSettings(); this.CurrentConnectionConfig.MoreSettings.DatabaseModel = DbType.Doris; + this.CurrentConnectionConfig.MoreSettings.DisableNvarchar = true; break; case DbType.TDengine: Check.Exception(SugarCompatible.IsFramework, "TDengine only support .net core");