使用 Linq 返回记录列表
我有一个 List
,客户的字段为:Id、FirstName、LastName
我有一个 List
,记录的字段为:CustomerId , RecordId
我有一个 List
,记录具有以下字段:Id、FieldA、FieldB
我想取回取决于 List
的所有记录,表示客户存在的所有记录在客户列表中
您有什么想法吗?
谢谢,
I have a List<Customer>Customer
, the Customer has as fields : Id, FirstName, LastName
I have a List<Records>Records
, the Records has as fields : CustomerId, RecordId
I have a List<Record> Record
, the Record has as fields : Id, FieldA, FieldB
I'd like to get back all the the Record depending of the List<Customer>
means all the record with the Customer present in the Customer list
Do you have an idea ?
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为这种加入会起作用:
但我也认为“记录”可能更好地命名为 CustomerRecordLink 或类似的
I think this join will work:
but I also think that the "Records" might be better named CustomerRecordLink or similar
一个简单的方法是使用连接?
A Simple one would be using joins?