Update Subquery.WithAttr

This commit is contained in:
sunkaixuan 2025-03-11 20:12:28 +08:00
parent f706b8a839
commit 79ebc83763

View File

@ -186,6 +186,10 @@ namespace SqlSugar
{
var asName = this.context.GetTranslationTableName(asItems.First().Replace(subKey, ""), false);
var repKey = $"\\{this.context.SqlTranslationLeft}.+\\{this.context.SqlTranslationRight}";
if (this.context.CurrentShortName.HasValue())
{
asName = asName + " " + this.context.CurrentShortName;
}
sqlItems[i] = Regex.Replace(sqlItems[i], repKey, asName);
}
}