Synchronization code

This commit is contained in:
sunkaixuan
2023-07-02 18:39:46 +08:00
parent 4267012a30
commit 8cb7416a49

View File

@@ -37,6 +37,13 @@ namespace SqlSugar
Check.ArgumentNullException(name, string.Format(ErrorMessage.ObjNotExist, "Table Name"));
if (!name.Contains("<>f__AnonymousType") &&name.IsContainsIn("(", ")", SqlTranslationLeft)&&name!= "Dictionary`2")
{
var tableInfo = this.Context
.MappingTables?
.FirstOrDefault(it => it.EntityName.Equals(name, StringComparison.CurrentCultureIgnoreCase));
if (tableInfo != null)
{
return GetTranslationColumnName(tableInfo.DbTableName);
}
return name;
}
if (Context.MappingTables == null)