从跳转表加载相关实体

发布于 2024-12-14 13:51:19 字数 301 浏览 2 评论 0原文

我有一个跳转表来关联客户和联系人,我想按客户名称加载所有联系人。最好的方法是什么?

   Dim Q = From Cust In EnData.Customers Where Cust.CustomerID = ID Select Cust
            ContactRow = Q.FirstOrDefault.CustomerToContacts.??? here I'm stock...

表格布局

I have a jump table to relate the Customers and the contact, I want to load all contacts by a customer name. What is the best way to do that?

   Dim Q = From Cust In EnData.Customers Where Cust.CustomerID = ID Select Cust
            ContactRow = Q.FirstOrDefault.CustomerToContacts.??? here I'm stock...

table layout

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

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

发布评论

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

评论(1

铁轨上的流浪者 2024-12-21 13:51:20

试试这个...

var customerContacts = EnData.CustomerToContact
                           .Where(c => c.Customer.CustName.Equals(custName))
                           .Select(c => c.Contact);

这应该返回一个 IQueryable,其中包含具有所提供的 custName 的客户的所有联系人。您必须将其转换为 VB,因为这是在 C# 中,尽管我认为这应该相当简单。

Try this...

var customerContacts = EnData.CustomerToContact
                           .Where(c => c.Customer.CustName.Equals(custName))
                           .Select(c => c.Contact);

This should return an IQueryable<Contact> containing all of the contacts for the customer with the provided custName. You'll have to convert it to VB as this is in C#, although I assume that should be rather straight forward.

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