mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-07-15 23:13:42 +08:00
Update TDengine
This commit is contained in:
parent
148c159df5
commit
1e352f7cd8
@ -313,6 +313,10 @@ namespace SqlSugar
|
||||
var obj = dr.GetValue(i);
|
||||
if (obj == null)
|
||||
return default(T);
|
||||
if (obj is byte[] bytes)
|
||||
{
|
||||
obj = dr.GetString(i);
|
||||
}
|
||||
var value = obj.ObjToString();
|
||||
return new SerializeService().DeserializeObject<T>(value);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user