Update 人大金仓

This commit is contained in:
sunkaixuan
2025-06-16 15:59:19 +08:00
parent 393d855346
commit 34546bc7c9

View File

@@ -99,6 +99,10 @@ namespace SqlSugar
{
get
{
if (IsSqlServerModel())
{
return "select table_name as name from information_schema.tables where table_type='VIEW' and lower(table_schema) ='" + GetSchema() + "' ";
}
return @"select table_name as name from information_schema.views where lower(table_schema) ='" + GetSchema() + "' ";
}
}