如何将数组添加为 ADO .NET 实体框架中的属性
我正在为应用程序使用自定义数据服务提供商。
我需要添加以下类作为实体
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用导航属性我可以做到这一点。
Using navigational properties I able to do this.