修改bug:sqlserver二进制实例由于大小写敏感导致问题 fix

This commit is contained in:
songsy
2020-03-05 13:54:43 +08:00
parent a6ef0bef66
commit 998d20b893

View File

@@ -51,7 +51,7 @@ namespace SqlSugar
WHERE syscolumns.id IN
(SELECT id
FROM sysobjects
WHERE xtype IN('U',
WHERE upper(xtype) IN('U',
'V') )
AND (systypes.name <> 'sysname')
AND sysobjects.name='{0}'