我在哪里可以找到Linq ThenInclude方法?

时间:2016-12-28 18:14:25

标签: c# entity-framework linq model-view-controller

我看到一些包含 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)

1 个答案:

答案 0 :(得分:6)

ThenInclude是Entity Framework Core(EF 7)的一部分。