This commit is contained in:
sunkaixuan
2017-10-18 14:40:16 +08:00
parent f02c6904e7
commit 07b36c3e06

View File

@@ -151,11 +151,15 @@ namespace SqlSugar
{
return "long";
}
else if (dbTypeName == "int16")
{
return "short";
}
else if (propertyTypes == null)
{
return "other";
}
else if (dbTypeName == "xml")
else if (dbTypeName.IsContainsIn("xml", "string", "String"))
{
return "string";
}