我看到一些包含 ThenInclude 的LINQ代码示例。我在哪里可以找到这样的方法?在外部库或其他命名空间中。
我想用这样的方法来获取派生数据,但我找不到这样的方法或者你知道其他解决方案
return _dbContext.Goals
.Where(p => p.Owner.Id == userId)
.Include(p => p.GoalExpectation)
.ThenInclude<RangeGoalExpectation>(p => p.MinValue)
.ThenInclude<RangeGoalExpectation>(p => p.MaxValue)
.ThenInclude<SpecifiedGoalExpectation>(p => p.Value)