vote up 1 vote down star
1

All of a sudden I keep getting a MetadataException on instantiating my generated ObjectContext class. The connectionstring in App.Config looks correct - hasn't changed since last it worked - and I've tried regenerating a new model (edmx-file) from the underlying database with no change.

Anyone have any... ideas?

Edit: I haven't changed any properties, I haven't changed the name of any output assemblies, I haven't tried to embed the EDMX in the assembly. I've merely waited 10 hours from leaving work until I got back. And then it wasn't working anymore.

I've tried recreating the EDMX. I've tried recreating the project. I've even tried recreating the database, from scratch. No luck, whatsoever.

I'm truly stumped.

flag

5 Answers

vote up 3 vote down check

This means that the application is unable to load the EDMX. There are several things which can cause this.

  • You might have changed the MetadataArtifactProcessing property of the model to Copy to Output Directory.
  • The connection string could be wrong. I know you say you haven't changed it, but if you have changed other things (say, the name of an assembly), it could still be wrong.
  • You might be using a post-compile task to embed the EDMX in the assembly, which is no longer working for some reason.

In short, there is not really enough detail in your question to give an accurate answer, but hopefully these ideas should get you on the right track.

link|flag
1  
The connectionstring, despite my efforts to compare it with a content-compare utility last time, was wrong. – J. Steen Apr 29 at 11:26
vote up 2 vote down

This little change help with this problem.

I have Solution with 3 project.

connectionString="metadata=res:///Model.Project.csdl|res:///Model.Project.ssdl|res://*/Model.Project.msl;

change to

connectionString="metadata=res://*/;

link|flag
+1 for this solving my problem. – Russell Steen Sep 11 at 13:10
vote up 1 vote down

The ultimate solution (even after recreating the database on two other machines, as well as EDMX and other sundries) was to not use the horribly limited Entity Framework. Looking forward to evaluating it again in .NET 4.0.

EDIT:

After running into the same problem -again- and going all over teh googles for an answer, I finally found someone who'd had the same problem. It appears that the connectionstring wasn't correctly generated by Visual Studio's wizard, and the link to the metadata resources were missing an important path. Not completely bloody obvious, I tell you. =)

http://forums.asp.net/p/1409590/3082930.aspx

link|flag
Hey, giving a reason for the downvote is always nice! =) This was my solution, and worked for me. Do you have a better one? – J. Steen Apr 21 at 11:42
vote up 1 vote down

I had the same problem. I just had a look into my complied dll with reflector and see that the name of the ressource where not the right ones. I renamed and look fines now

link|flag
vote up 0 vote down

I deleted the app.connection string and started over. app.config stuff delete. Then re-add the entity data model stuff, it should be fine.

link|flag
You obviously didn't read my posts, where I said I recreated everything as far down as the database itself. =) – J. Steen Sep 18 at 6:18

Your Answer

Get an OpenID
or

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