mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Update BulkMerge
This commit is contained in:
parent
553ad316bc
commit
103b69c9b4
@ -280,7 +280,12 @@ namespace SqlSugar
|
||||
foreach (DataColumn item in dataTable.Columns)
|
||||
{
|
||||
var isPrimaryKey = whereColumns.Any(it => it.EqualCase(item.ColumnName));
|
||||
builder.CreateProperty(item.ColumnName,typeof(Nullable<>).MakeGenericType(UtilMethods.GetUnderType(item.DataType)), new SugarColumn()
|
||||
var propertyType = item.DataType;
|
||||
if (!propertyType.IsClass())
|
||||
{
|
||||
propertyType=typeof(Nullable<>).MakeGenericType(UtilMethods.GetUnderType(item.DataType));
|
||||
}
|
||||
builder.CreateProperty(item.ColumnName, propertyType, new SugarColumn()
|
||||
{
|
||||
IsPrimaryKey = isPrimaryKey,
|
||||
IsIdentity=isIdentity&& isPrimaryKey,
|
||||
|
Loading…
Reference in New Issue
Block a user