mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-22 20:13:41 +08:00
Update exp to sql
This commit is contained in:
@@ -612,7 +612,14 @@ namespace SqlSugar
|
||||
{
|
||||
first = first.Split('(').Last().Trim();
|
||||
}
|
||||
result.Add(first,last);
|
||||
if (!result.ContainsKey(first))
|
||||
{
|
||||
result.Add(first, last);
|
||||
}
|
||||
else
|
||||
{
|
||||
Check.ExceptionEasy("Expression parsing error. Same Key exists at multiple levels", "表达式解析出错,多层级存在相同的Key ");
|
||||
}
|
||||
}
|
||||
return result; ;
|
||||
}
|
||||
|
Reference in New Issue
Block a user