Special integration usage includes(x=> x.items.tolist ())

This commit is contained in:
sunkaixuan 2025-04-02 11:11:18 +08:00
parent 9a537821c1
commit a45f728062

View File

@ -93,6 +93,22 @@ namespace SqlSugar
private InsertNavProvider<Root, TChild> _ThenInclude<TChild>(Expression<Func<T, List<TChild>>> expression) where TChild : class, new()
{
var name = ExpressionTool.GetMemberName(expression);
if (expression is LambdaExpression lambda)
{
if (lambda.Body is MethodCallExpression method)
{
if (method.Method.Name == "ToList")
{
if (method.Arguments.FirstOrDefault() is { } arg)
{
if (arg is MemberExpression member)
{
name = member.Member.Name;
}
}
}
}
}
var isRoot = false;
if (this._ParentEntity == null)
{