!110 update Src/Asp.Net/SqlSugar/Abstract/FastestProvider/FastestProvider.cs.

Merge pull request !110 from lybing/N/A
This commit is contained in:
阿妮亚
2026-02-06 08:44:29 +00:00
committed by Gitee

View File

@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Data;
using System.Text;
@@ -443,6 +443,10 @@ namespace SqlSugar
{
item[col.ColumnName] =UtilMethods.GetMinDate(this.context.CurrentConnectionConfig);
}
else if (col.DataType == UtilConstants.ByteArrayType)
{
item[col.ColumnName] = null;
}
else
{
item[col.ColumnName] = Activator.CreateInstance(col.DataType);