mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-24 18:04:52 +08:00
Update CodeFirst
This commit is contained in:
parent
97375f5d1e
commit
c133dcac08
@ -327,7 +327,14 @@ namespace SqlSugar
|
|||||||
if (schemas.Any(y => y.EqualCase(tableSchemas)))
|
if (schemas.Any(y => y.EqualCase(tableSchemas)))
|
||||||
{
|
{
|
||||||
sql = string.Format(this.DeleteTableRemarkSql, this.SqlBuilder.GetNoTranslationColumnName(tableName.Split('.').Last()));
|
sql = string.Format(this.DeleteTableRemarkSql, this.SqlBuilder.GetNoTranslationColumnName(tableName.Split('.').Last()));
|
||||||
sql = sql.Replace(",dbo,", $",{tableSchemas},").Replace("'user'", "'SCHEMA'");
|
if (tableSchemas.EqualCase("user"))
|
||||||
|
{
|
||||||
|
sql = sql.Replace("'user'", "'SCHEMA'").Replace("dbo", $"'{tableSchemas}'");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
sql = sql.Replace(",dbo,", $",{tableSchemas},").Replace("'user'", "'SCHEMA'");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
this.Context.Ado.ExecuteCommand(sql);
|
this.Context.Ado.ExecuteCommand(sql);
|
||||||
|
Loading…
Reference in New Issue
Block a user