mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-22 02:32:50 +08:00
Update DamengUtils.cs
当 value 等于null 时 string.Concat 返回 ""
This commit is contained in:
parent
e8941be89e
commit
0c7c073e82
@ -56,7 +56,8 @@ namespace FreeSql.Dameng
|
|||||||
case DmDbType.Char:
|
case DmDbType.Char:
|
||||||
case DmDbType.VarChar:
|
case DmDbType.VarChar:
|
||||||
case DmDbType.Text:
|
case DmDbType.Text:
|
||||||
value = string.Concat(value);
|
if(value != null)
|
||||||
|
value = string.Concat(value);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user