mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-20 02:29:39 +08:00
bug: generic query
This commit is contained in:
@@ -37,6 +37,13 @@ namespace SqlSugar
|
|||||||
Check.ArgumentNullException(name, string.Format(ErrorMessage.ObjNotExist, "Table Name"));
|
Check.ArgumentNullException(name, string.Format(ErrorMessage.ObjNotExist, "Table Name"));
|
||||||
if (!name.Contains("<>f__AnonymousType") &&name.IsContainsIn("(", ")", SqlTranslationLeft)&&name!= "Dictionary`2")
|
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;
|
return name;
|
||||||
}
|
}
|
||||||
if (Context.MappingTables == null)
|
if (Context.MappingTables == null)
|
||||||
|
Reference in New Issue
Block a user