I had the following entities in my domain:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ActiveDirectoryItem | |
{ | |
public int Id { get; set; } | |
public int ActiveDirectoryId { get; set; } | |
public string Name { get; set; } | |
public string Type { get; set; } | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Role | |
{ | |
public int Id { get; set; } | |
public string Name { get; set; } | |
public string Description { get; set; } | |
public virtual ICollection<Task> Tasks { get; set; } | |
public virtual ICollection<Operation> Operations { get; set; } | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class RoleAssignment | |
{ | |
public int Id { get; set; } | |
public Role Role { get; set; } | |
public virtual ICollection<ActiveDirectoryItem> ActiveDirectoryItems { get; set; } | |
} |
And this is how it was mapped through Entity Framework:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
modelBuilder.Entity<RoleAssignment>() | |
.HasRequired<Role>(r => r.Role) | |
.WithOptional() | |
.WillCascadeOnDelete(true); | |
modelBuilder.Entity<RoleAssignment>() | |
.HasMany<ActiveDirectoryItem>(r => r.ActiveDirectoryItems) | |
.WithOptional() | |
.WillCascadeOnDelete(true); |
Unfortunately Entity Framework got confused when I tried to create a new Role and RoleAssignment. It generated the wrong query for the RoleAssignment and tried to set the āIdā field to the Role id.
To fix it I had to explicitly tell Entity Framework to use the Role_Id column to map the foreign key relationship:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
modelBuilder.Entity<RoleAssignment>() | |
.HasRequired<Role>(r => r.Role) | |
.WithOptional() | |
.Map(a=> a.MapKey("Role_Id")) |
Strange thing is that this code was working in a previous release of the application.