This is the first time I am using code first, so please bear with me:
I have the following entities:
class Company
{
Guid Id
string Name
virtual List<Employee> Employees
}
class Employee
{
Guid Id
string Name
Guid CompanyId
virtual Company Company
}
And the following configuration for Employee:
HasRequired(e => e.Company)
.WithMany(i => i.employees)
.HasForeignKey(r => r.companyId)
.WillCascadeOnDelete(false);
I can easily Create a Company with a List of Employees.
However, when I then try to update this Company and make Eomployees 'null' or an empty list I get the following exception:
Multiplicity constraint violated. The role 'Employee_Company_Target' of the relationship 'Employee_Company' has multiplicity 1 or 0..1.
Edit: Answers to questions in comments:
There is nothing I am trying to accomplish in particular. I basically wanted to test if it would delete all Employees related to this Company or just ignore it. I should do either of those, right?
EmployeeId is not a foreign key, CompanyId in Employee is.
I've also tried updating with an empty List, but that didn't work either.
Thanks!