I have a simple 2 object Table-Per-Type inheritance defined in an EF model.

Entities

public class User
{
    public Guid Id { get; set; }
    public string Name { get; set; }
    public string Email { get; set; }
    public string Password { get; set; }
}

public class Person : User
{
    public string FirstName { get; set; }
    public string MiddleName { get; set; }
    public string LastName { get; set; }
}

Database

public class MainDataContext : DbContext
{
    public DbSet<User> Users { get; set; }
    public DbSet<Person> Persons { get; set; }

    protected override void OnModelCreating(DbModelBuilder modelBuilder)
    {
        base.OnModelCreating(modelBuilder);
        var configs = modelBuilder.Configurations;
        configs.Add(new UserConfiguration());
        configs.Add(new PersonConfiguration());
    }
}

Configurations

internal class UserConfiguration : EntityTypeConfiguration<User>
{
    internal UserConfiguration()
    {
        ToTable("Users");

        HasKey(x => x.Id);

        Property(x => x.Id)
            .HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity);
        Property(x => x.Name)
            .IsRequired()
            .HasMaxLength(128);
        Property(x => x.Password)
            .IsRequired()
            .HasMaxLength(128);
        Property(x => x.Email)
            .IsRequired()
            .HasMaxLength(128);
    }
}
internal class PersonConfiguration : EntityTypeConfiguration<Person>
{
    internal PersonConfiguration()
    {
        ToTable("Persons");

        Property(x => x.FirstName)
            .IsRequired()
            .HasMaxLength(16);
        Property(x => x.MiddleName)
            .IsOptional()
            .HasMaxLength(16);
        Property(x => x.LastName)
            .IsRequired()
            .HasMaxLength(16);
    }
}

Necessary to consistently create linked (FK) objects in the DbSets, something like this:

    var db = new MainDataContext();
    var user = new User
    {
        Name = "someUser",
        Password = "somePassword",
        Email = "someEmail"
    };
    db.Users.Add(user);
    db.SaveChanges();
    // After some time in other some place
    var person = new Person
    {
        Id = user.Id,
        FirstName = "someFirstName",
        LastName = "someLastName"
    };
    db.Persons.Add(person);
    db.SaveChanges();

After last SaveChanges DbEntityValidationError was caught: "Validation failed for one or more entities. See 'EntityValidationErrors' property for more details." There are 3 validation errors for required User's fields.

How to separately add entries to DbSets that are acociated by FK (inheritence)?

UPDATE

I found one solution. But for this you must remove the old user. I would like to do this without removing, because if the Users table would be associated with the other tables, then it will make it impossible to removing.

    var db = new MainDataContext();
    var user = new User
    {
        Name = "someUser",
        Password = "somePassword",
        Email = "someEmail"
    };
    db.Users.Add(user);
    db.SaveChanges();
    // After some time in other some place
    var person = new Person
    {
        Id = user.Id,
        Name = user.Name,
        Password = user.Password,
        Email = user.Email,
        FirstName = "someFirstName",
        LastName = "someLastName"
    };
    db.Users.Remove(user);
    db.Persons.Add(person);
    db.SaveChanges();

But there was another problem - are generated a new Guid for the person object.

How to solve the problem without removing the old record of the user?

link|improve this question

60% accept rate
Because Person inherits from User, you must specify the Name, Password, and Email. What does the database look like? Does the Person table have all of the fields from the User table or just a FK to the user table. If it is the later, your Entities are wrong. – cadrell0 Feb 14 at 15:41
@cadrell0 as I said earlier I use table-per-type (just FK to the user table) way to map tables to object hierarchies. Here is the image of the db diagram. – crackbrain Feb 14 at 15:50
Then why does Person inherit from User? – cadrell0 Feb 14 at 18:09
Because that's needed by the logic of my application. Do you offer to do the opposite? It doesn't matter, the problem is not the case. Need to separately add records (objects) in the tables (DbSets) that are associated by foreign key (inheritance). – crackbrain Feb 15 at 3:39
Your entities should match the format of your database. If your application needs to present the data differently, create domain classes (DTOs). – jrummell Feb 15 at 21:02
show 4 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.