我看到了一些包含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)
最佳答案
ThenInclude是Entity Framework Core(EF 7)的一部分。
关于c# - 在哪里可以找到Linq ThenInclude方法?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41367534/