如何将数组添加为 ADO .NET 实体框架中的属性

发布于 2024-09-27 17:54:13 字数 474 浏览 2 评论 0原文

我正在为应用程序使用自定义数据服务提供商。

我需要添加以下类作为实体

public class PhysicalAddress
{
  public PhysicalAddress();

  public string City { get; set; }
  public string Country { get; set; }
  public string CountryCode { get; set; }
}

class Parent
{
  public PhysicalAddress[] Address { get; set; }
}

class Child : Parent
{
  string division;
  string business;
}

这里 Adress 属性是 PhysicalAddress 类的数组。如何将其定义为原始类型并将其添加到子实体类型中?

谢谢,

拉姆

I am using Custom data service provider for an application.

I need to add following class as entity

public class PhysicalAddress
{
  public PhysicalAddress();

  public string City { get; set; }
  public string Country { get; set; }
  public string CountryCode { get; set; }
}

class Parent
{
  public PhysicalAddress[] Address { get; set; }
}

class Child : Parent
{
  string division;
  string business;
}

Here Adress property is array of PhysicalAddress class. How can I define and add it as a primitive type in the Child entity type?

Thanks,

Ram

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

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

发布评论

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

评论(1

傲影 2024-10-04 17:54:13

使用导航属性我可以做到这一点。

Using navigational properties I able to do this.

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