具有两个导航属性的 Lambda 表达式

发布于 2024-10-17 07:52:11 字数 536 浏览 1 评论 0原文

我遇到一种情况,我正在调用一个实体并在 ria 服务调用中放入两个包含内容。

public IQueryable<Position> GetPositions(int programID)
{
    return _positionRepository.All()
                .Where(x => x.ProgramID == programID)
                .Include("RecPositions.Person");
}

我想获取前端的 Person 实体的句柄。我有这个工作..下面的代码给了我一个关于recPositions的句柄,并且在智能中我可以看到Person对象。我喜欢抽象那个实体。

var test = _allRec.Select(x => x.RecPositions).ToList();

测试现在有了我的 RecPosition...但我想知道如何编写 lambda 表达式,以便我可以获取 person 对象的句柄。

I have a situation where I am calling an entity and putting in two includes in the ria services call.

public IQueryable<Position> GetPositions(int programID)
{
    return _positionRepository.All()
                .Where(x => x.ProgramID == programID)
                .Include("RecPositions.Person");
}

Id like to get a handle on the Person entity on the front end. I have this working..the code below gives me a handle on the recPositions and in the intellisence I can see the Person object. id like to abstract that entity.

var test = _allRec.Select(x => x.RecPositions).ToList();

test now has my RecPosition...but i want to know how to write a lambda express so i can get a handle on the person object.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

顾冷 2024-10-24 07:52:11

我想出了这个..有没有人对此有任何反对意见或更好的方法..

var test = _allRec.SelectMany(x => x.RecPositions)
                  .Select(p => p.Person)
                  .ToList();

这似乎给了我我想要的东西。

I came up with this..does anyone have any objections to this or a better way..

var test = _allRec.SelectMany(x => x.RecPositions)
                  .Select(p => p.Person)
                  .ToList();

this seems to give me what I want.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文