Skip to content

Commit d6b7acd

Browse files
authored
Merge pull request #2116 from handloong/master
- 修复 : OracleDBFirst生成实体Schema清空导致的-match无法匹配表
2 parents e420e15 + b333795 commit d6b7acd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Providers/FreeSql.Provider.Oracle/OracleDbFirst.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ from all_views a
351351
if (database.Length == 1)
352352
{
353353
table_id = table_id.Substring(table_id.IndexOf('.') + 1);
354-
schema = "";
354+
//schema = "";
355355
}
356356
loc2.Add(table_id, new DbTableInfo { Id = table_id, Schema = schema, Name = table, Comment = comment, Type = type });
357357
loc3.Add(table_id, new Dictionary<string, DbColumnInfo>());

0 commit comments

Comments
 (0)