mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-16 04:59:34 +08:00
QuestDb bug
This commit is contained in:
parent
25ee76ad87
commit
10d1a037a4
@ -82,6 +82,14 @@ namespace SqlSugar
|
||||
{
|
||||
return $" cast('{it.Value.ObjToDate().ToString("yyyy-MM-dd HH:mm:ss.fff")}' as date)";
|
||||
}
|
||||
else if (it.Value is int || it.Value is long ||it.Value is short || it.Value is short || it.Value is byte)
|
||||
{
|
||||
return it.Value;
|
||||
}
|
||||
else if (it.Value is bool)
|
||||
{
|
||||
return it.Value.ObjToString().ToLower();
|
||||
}
|
||||
else
|
||||
{
|
||||
value = it.Value;
|
||||
|
Loading…
Reference in New Issue
Block a user