I have the following problem: I have a table called farmers. Each farmer has a country specified that is mandatory. When I add a new farmer to the database using antity framework, I get a violation on the country table. It looks like the entity framework wants to add the country to the country table, but I only want the guid in my farmer table: Violation of PRIMARY KEY constraint 'PK_Country'. Cannot insert duplicate key in object 'dbo.Country'. The statement has been terminated.
Can somebody advise me on what I'm doing wrong? here the code for the insert:
newFarmer.Guid = Guid.NewGuid();
ents.Farmer.AddObject(newFarmer);
ents.SaveChanges();
return newFarmer;
I even checked the state of the country and it says unchanged.
Countryobject from that you assign tonewFarmer.Country? Normally one would immediately guess that yourCountryobject isn't attached to the ObjectContext when you callAddObject(newFarmer)which would cause an INSERT of theCountryobject. But then its state could not beunchangedas you say. The exception you have is - with an object in stateunchanged- pretty impossible. Some important info must be missing in your problem description and code. – Slauma Jun 3 '11 at 12:48