mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-12-05 03:17:41 +08:00
Update TDengine
This commit is contained in:
@@ -151,7 +151,11 @@ namespace SqlSugar.TDengineCore
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
daRow[columns[i].ColumnName] = dr.GetValue(i);
|
if (value == null)
|
||||||
|
{
|
||||||
|
value = DBNull.Value;
|
||||||
|
}
|
||||||
|
daRow[columns[i].ColumnName] = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
dt.Rows.Add(daRow);
|
dt.Rows.Add(daRow);
|
||||||
|
|||||||
Reference in New Issue
Block a user