Update GBase bool bug

This commit is contained in:
sunkaixuan
2023-08-09 17:00:37 +08:00
parent 99802c87bd
commit fc08adee9d
2 changed files with 2 additions and 2 deletions

View File

@@ -132,7 +132,7 @@ namespace SqlSugar.GBase
}
else if (type == UtilConstants.BoolType)
{
return value.ObjToBool() ? "1" : "0";
return value.ObjToBool() ? "true" : "false";
}
else
{