Entity Framework Code First 0 到 1 映射

发布于 2024-11-01 19:48:12 字数 643 浏览 1 评论 0原文

我想创建这两个模型的地图,如何在代码优先中执行此操作?

public class Payment
{
    public int PaymentId { get; set; }
}

public class PaymentBank
{
    public int PaymentId { get; set; }
}

public class PaymentCheque
{
    public int PaymentId { get; set; }
}

Payment 可以是 PaymentBankPaymentCheque 类型。我正在尝试遵循类似的场景 这个。如果可能的话,我希望能够继承它,例如:

public class PaymentCheque : Payment
{
    public int RoutingNumber {get; set;}
}   

I want to create a map of these 2 models, how do I do this in code-first?

public class Payment
{
    public int PaymentId { get; set; }
}

public class PaymentBank
{
    public int PaymentId { get; set; }
}

public class PaymentCheque
{
    public int PaymentId { get; set; }
}

Payment can be either of type PaymentBank or PaymentCheque. I'm trying to follow a scenario like this. I'd love if I could do inheritance of this if possible, such as:

public class PaymentCheque : Payment
{
    public int RoutingNumber {get; set;}
}   

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

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

发布评论

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

评论(2

不及他 2024-11-08 19:48:12

你真的尝试过吗?或者搜索/谷歌搜索它?

请参阅:

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