Update DynamicBuilder

This commit is contained in:
sunkaixuan
2024-07-18 14:03:37 +08:00
parent fec2d61b3b
commit 9e1220d880
2 changed files with 13 additions and 3 deletions

View File

@@ -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;
}

View File

@@ -2,7 +2,7 @@
<package >
<metadata>
<id>SqlSugarCore</id>
<version>5.1.4.166-preview01</version>
<version>5.1.4.167-preview04</version>
<authors>sunkaixuan</authors>
<owners>果糖大数据科技</owners>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0.html</licenseUrl>