mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-08-25 01:14:33 +08:00
Update TDengine
This commit is contained in:
parent
a6335d70a2
commit
64133f6f28
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user