Update db.Storageable

This commit is contained in:
sunkaixuan 2022-11-20 16:16:57 +08:00
parent 0813e90e95
commit c9cda3abdf

View File

@ -211,6 +211,10 @@ namespace SqlSugar
if (result)
{
result = row[name].ObjToString() == it[name].ObjToString();
if (result==false&&it[name] != null && it[name].GetType() == UtilConstants.DecType)
{
result= row[name].ObjToDecimal() == it[name].ObjToDecimal();
}
if (result == false)
{
break;