测试Array常用查询函数

This commit is contained in:
d4ilys
2023-11-30 15:48:59 +08:00
parent 362d39bdb5
commit 57b0347c94
6 changed files with 416 additions and 35 deletions

View File

@ -583,9 +583,13 @@ where a.database in ({0}) and a.table in ({1})", tboldname ?? tbname);
if (isPrimary)
{
if (dbType.Contains("Nullable"))
return dbType.Replace("Nullable(", "")
{
var res = dbType.Replace("Nullable(", "")
.Replace(")", "")
.Replace(" NOT NULL", "");
return res;
}
return dbType;
}