将实体属性映射到其他实体

发布于 2024-12-08 12:24:08 字数 196 浏览 0 评论 0原文

在 AdventureWorks 数据库中,我们有个人、联系人和客户。 这3张表是相关的。我的目标是在致电客户时获取客户的名字、姓氏和电子邮件地址。

有没有办法通过映射来解决这个问题?

提前致谢。 Kyor

编辑:结构: 表格结构

Inside the AdventureWorks database we have Individuals, Contacts and Customers.
These 3 tables are related. My goal is to get the FirstName, LastName and Email up on the Customers when I call them.

Is there a way to resolve this with mappings?

Thanks in advance.
Kyor

EDIT: Structure:
Structure of the table

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

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

发布评论

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

评论(1

我可以想到两种方法:

1)使用 Include()

 var customers = context.Customer.Include("Individual.Contact");

然后你可以通过以下方式访问属性:customers.First().Individual.Contact.FirstName;

2) 投影到新类型

  var customers = from c in context.Customer
                  select new NewCustomerType
                  {
                    Customer = c,
                    FirstName = c.Individual.Contact.FirstName,
                    LastName = .Individual.Contact.LastName,
                    .
                    .
                    .
                  };

I can think of two ways:

1) Using Include()

 var customers = context.Customer.Include("Individual.Contact");

Then you can access the properties by: customers.First().Individual.Contact.FirstName;

2) Projecting to a new Type

  var customers = from c in context.Customer
                  select new NewCustomerType
                  {
                    Customer = c,
                    FirstName = c.Individual.Contact.FirstName,
                    LastName = .Individual.Contact.LastName,
                    .
                    .
                    .
                  };
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文