mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2026-01-21 18:48:27 +08:00
Update SplitTypeExtensions
This commit is contained in:
@@ -17,7 +17,7 @@ namespace SqlSugar
|
||||
List<SplitTableInfo> result = new List<SplitTableInfo>();
|
||||
foreach (var item in tables)
|
||||
{
|
||||
if (tableNames.Any(it => item.TableName.Contains(it)))
|
||||
if (tableNames.Any(it => item.TableName.ObjToString().ToLower().Contains(it.ObjToString().ToLower())))
|
||||
{
|
||||
result.Add(item);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user