mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-12-05 03:17:41 +08:00
Update DynamicBuilder
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user