My code-first database was working great. If I made a change to my database context the database would be updated the next time I started the application. But then I added
This problem is caused by a possible cyclic cascading delete. This can happen in many forms, but it comes down to a record being deleted by two or more cascading delete rules in one time.
For example, lets say you have Parent table and two Child tables. Then you also have another table which is linked to both Child tables:
Parent
------
ParentId
Name
ChildOne
--------
ChildOneId
ParentId
Name
ChildTwo
--------
ChildTwoId
ParentId
Name
SharedChild
-----------
SharedChildId
ChildOneId
ChildTwoId
Name
When you delete a record from the Parent table, it is possible this delete will cascade to both ChildOne and ChildTwo. These two deletes can then further cascade to SharedChild and here we get the problem: two paths trying to delete the same record from SharedChild.
I'm not saying your situation is exactly the same, but one way or another, you have something similar going on. To solve this, you can decide to let one branch be allowed to cascade further down the chain and prevent it in the other chain.
The reason you get this error only the first time you run your app and then every time you delete the database, is because (I believe) Entity Framework stops generating the database at the point the error occurs and you are left with an incomplete database. That's why you're getting the other error in the other situations.
If you need more help resolving the cyclic cascading delete, you will probably need to show your entire datamodel and its relations.
to solve this issue, what you need to do is remove the foreign key attribute, and just leave the object referenced as virtual:
here's what I did:
the old code when I had this bug:
public class OperatingSystemType
{
public int OperatingSystemTypeID { get; set; }
[StringLength(50)]
[Required]
public string OperatingSystemName { get; set; }
public int CompanyID { get; set; }
[ForeignKey("CompanyID")]
public virtual Company Company { get; set; }
}
the new code after solving this bug:
public class OperatingSystemType
{
public int OperatingSystemTypeID { get; set; }
[StringLength(50)]
[Required]
public string OperatingSystemName { get; set; }
public virtual Company Company { get; set; }
}
then in the seed, you add data like this shown below, as we just add the Company object as one of the parameter value for OperatingSystemType:
protected override void Seed(MyAPPMVC.Infrastructure.MyContext context)
{
string myusername = "myuser";
string MicrosoftName = "Microsoft";
context.Companies.AddOrUpdate(p => p.CompanyName,
new Company { CompanyName = MicrosoftName, CreatedOn = DateTime.Now, CreatedBy = myusername }
);
context.SaveChanges();
Company MicrosoftCompany = context.Companies.Where(p => p.CompanyName == MicrosoftName).SingleOrDefault();
context.OperationgSystemTypes.AddOrUpdate(p => p.OperatingSystemName,
new OperatingSystemType { OperatingSystemName = "Windows 7 Professional", Company = MicrosoftCompany, CreatedOn = DateTime.Now, CreatedBy = myusername },
new OperatingSystemType { OperatingSystemName = "Windows 8 Professional", Company = MicrosoftCompany, CreatedOn = DateTime.Now, CreatedBy = myusername }
);