mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-12-26 14:15:50 +08:00
Synchronization code
This commit is contained in:
@@ -344,6 +344,11 @@ namespace SqlSugar
|
||||
include=Regex.Match( item.IndexName,@"\{include\:.+$").Value;
|
||||
item.IndexName = item.IndexName.Replace(include, "");
|
||||
}
|
||||
if (item.IndexName.Contains(".")&& item.IndexName.Contains("["))
|
||||
{
|
||||
item.IndexName = item.IndexName.Replace(".","_");
|
||||
item.IndexName = item.IndexName.Replace("[", "").Replace("]", "");
|
||||
}
|
||||
}
|
||||
if (!this.Context.DbMaintenance.IsAnyIndex(item.IndexName))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user