up vote 36 down vote favorite
10
share [g+] share [fb]

This thing is driving me crazy, and the error is quite meaningless to me:

Unable to update the EntitySet 'TableB' because it has a DefiningQuery and no element exists in the element to support the current operation.

My tables are put like this:

TableA
int idA (identity, primary key)
...

TableB
int idA (FK for TableA.idA)
int val

TableB has no defined primary key in the SQL server. The Entity Framework has imported the table and the association and set both fields as key. But it will output that error when I try to do an insert into the table!

What's wrong??


Edit: As suggested by Alex, the solution was this:

  1. Right click on the edmx file, select Open with, XML editor
  2. Locate the entity in the edmx:StorageModels element
  3. Remove the DefiningQuery entirely
  4. Rename the store:Schema="dbo" to Schema="dbo" (otherwise, the code will generate an error saying the name is invalid)
  5. Remove the store:Name property

I left the key as it was, since it was OK to me that both the columns are part of the key.

link|improve this question

3  
Thanks for the update - the step-by-step instructions helped this EF newb get the ASP.NET MVC tutorial app working! – Adam Neal Jan 24 '10 at 18:56
Thnx for this! I had a problem that EF didn't generate proper edmx file for sql server 2000 table that HAS primary key. But this instruction saved me :) – 100r Sep 6 '10 at 14:40
feedback

1 Answer

up vote 40 down vote accepted

Well when a table is encountered without a PrimaryKey it is treated as a View.

And views show up in the EDMX file (open in an XML editor to see) in the StorageModel\EntitySet[n]\DefiningQuery element.

When you have a DefiningQuery the Entity becomes readonly unless you add modification functions. You need 3 modifications functions (aka Stored Procedures) one for each of Insert, Update and Delete.

But you have two options:

Change the key definion:

  1. And convince the EF that what it thinks is a view is really a table
  2. Or add the appropriate modification functions

In your case I recommend (1).

link|improve this answer
That was great, thanks! – Palantir Oct 20 '09 at 7:12
Excellent, worked perfect. – highphilosopher Jul 20 '11 at 21:50
I got this error when I was trying to add an entity to a junction table. Your suggestion fixed it, thanks! – Walter Stabosz Dec 19 '11 at 3:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.