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?