EF 4.0 Linq to Enity 查询
大家好,我需要在 Linq to Entity 中复制此 SQL 查询,
select * from Subscriber a
inner join User b on a.UserId = b.Id
where b.Username = 'Name'
可能有人会有所帮助。
Hi guys i need to replicate this SQL query in Linq to Entity
select * from Subscriber a
inner join User b on a.UserId = b.Id
where b.Username = 'Name'
May be some one may help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
假设
Subscriber
具有引用用户实例的导航属性User
。如果您想使用联接(不需要),您可以将其用于内联接:
或将其用于左外联接:
Try this:
This suppose that
Subscriber
has navigation propertyUser
referencing the user instance.If you wan to use join (which is not needed) you can use this for inner join:
or this for left outer join: