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;}
}   
link|improve this question

1  
Check this article about inheritance in code first: link – Dampe Apr 18 '11 at 5:50
Btw. if you do not plan to add any additional Payment types I would recommend using TPH strategy because other strategies have worse performance. – Ladislav Mrnka Apr 18 '11 at 21:22
@Ladislav, I want to add more as the client requests more payment options. Does this mean I should use TPC? – Lol coder Apr 18 '11 at 22:32
I like the 1 table per heriachy, and it seems it will work well in my situation. What other scenarios would TPC makes sense? – Lol coder Apr 18 '11 at 22:36
feedback

2 Answers

Did you actualy try it? Or search/google for it?

see: http://weblogs.asp.net/manavi/archive/2010/12/24/inheritance-mapping-strategies-with-entity-framework-code-first-ctp5-part-1-table-per-hierarchy-tph.aspx

link|improve this answer
That was rethorical, right? :-) – Diego Mijelshon Apr 18 '11 at 13:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.