mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2026-01-23 21:32:04 +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))
|
||||
{
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<package >
|
||||
<metadata>
|
||||
<id>SqlSugarCore</id>
|
||||
<version>5.1.4.110</version>
|
||||
<version>5.1.4.111-preview04</version>
|
||||
<authors>sunkaixuan</authors>
|
||||
<owners>果糖大数据科技</owners>
|
||||
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0.html</licenseUrl>
|
||||
|
||||
Reference in New Issue
Block a user