Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 607585
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T17:22:32+00:00 2026-05-13T17:22:32+00:00

I’m new to the entity framework so hopefully this is a really simple question…

  • 0

I’m new to the entity framework so hopefully this is a really simple question… Can I combine these two entities?

alt text http://img215.imageshack.us/img215/9684/entz.jpg

Here is the db…
alt text http://img697.imageshack.us/img697/851/52477698.jpg

I want the final to be something like this…
alt text http://img694.imageshack.us/img694/88/entss.jpg

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T17:22:32+00:00Added an answer on May 13, 2026 at 5:22 pm

    I think that you are asking, “Is it true that I cannot use a related entity as a discriminator field for table per hierarchy inheritance?” And that is correct. You would need a separate discriminator field to use table per hierarchy inheritance. However, you would probably not need the ResourceType entity in this case, since the specific type of an entity itself is enough to tell you which icon to use.

    However, I would question whether inheritance is the correct design here.

    Using inheritance in an O/R mapping is always a bit of a compromise, because you will either use a design like table per hierarchy which does not map naturally to a well-formed relational schema, or a design like table per type, which means the DB server has to work harder to serve up even a simple list. I think that the common design guideline to “Favor composition over inheritance” is even more true for O/R mappings in particular than it is for OOD in general.

    I understand that the images you’ve added are just examples to illustrate your question, and that your real design may be more complicated, but let’s use it as an example:

    The subtypes in the diagram (Application, File, etc.) have only one property which is not in the parent type. For many of the subtypes, the “extra” property is the same, Link. One of them has a different property (Filename), but I will note that filenames can be expressed as URIs.

    In addition to the inheritance design you showed in your illustration, you could also model this design without using inheritance. In this case, you would remove the subtypes, but keep the ResourceType entity.

    Now let’s consider what some sample queries might look like with each design:

    // get books with inheritance:
    var bi = from b in Context.RelatedResources.OfType<Book>()
             select b;
    
    // without
    var bc = from b in Context.Resources
             where b.ResourceType.ID == ResourceType.Book // static property you define on ResourceType 
             select b;
    

    Neither one strikes me as terribly bad. For me, that’s reason enough not to use inheritance. The most compelling advantage of inheritance in an O/R mapping is to be able to easily retrieve entities of different subtypes in a single list. But you can already do that with this design. Because the composition design is easier to implement, less complicated, and will use your database more efficiently, I would prefer it unless there is a compelling advantage to inheritance, which I don’t see here.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.