mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-29 10:49:36 +08:00
Synchronization code
This commit is contained in:
parent
d423d62c81
commit
7e5b08fb8b
@ -784,6 +784,11 @@ namespace SqlSugar
|
||||
var whereString = expResult.GetResultString();
|
||||
if (expression.ToString().Contains("Subqueryable()"))
|
||||
{
|
||||
if (ExpressionTool.GetParameters(expression).First().Type == typeof(T))
|
||||
{
|
||||
var tableName = this.SqlBuilder.GetTranslationColumnName(this.EntityInfo.DbTableName);
|
||||
whereString = whereString.Replace(tableName, $"( SELECT * FROM {tableName}) ");
|
||||
}
|
||||
whereString = whereString.Replace(this.SqlBuilder.GetTranslationColumnName(expression.Parameters.First().Name) + ".", this.SqlBuilder.GetTranslationTableName(this.EntityInfo.DbTableName) + ".");
|
||||
}
|
||||
else if (expResult.IsNavicate)
|
||||
|
Loading…
Reference in New Issue
Block a user