具有两个导航属性的 Lambda 表达式
我遇到一种情况,我正在调用一个实体并在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想出了这个..有没有人对此有任何反对意见或更好的方法..
这似乎给了我我想要的东西。
I came up with this..does anyone have any objections to this or a better way..
this seems to give me what I want.