Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

From scratch, I made a new solution with two projects: one was MVC 3 and the other a supporting EF 4.2 project. The whole thing builds successfully. From the MVC project I open the "Add Controller" dialogue and have it generate code based on the context and model I select from the supporting EF project. The "add controller" dialogue fails with the message:

Unable to retrieve metadata for 'MyModelClass'. Configuration system failed to initialize.

I've noticed that the "add controller" dialogue is actually attempting to fetch the database connection string from its web.config file. First, this strikes me as goofy-ish, since the supporting EF project already has an app.config with the connection string. But never-minding that, the best I can figure is that the connection string in the web.config is bad somehow. This is what it looks like:

<add name="Monsters2Entities" 

    connectionString="
      metadata=res://*/Monsters.csdl|
               res://*/Monsters.ssdl|
               res://*/Monsters.msl;
      provider=System.Data.SqlClient;
      provider connection string=&quot;
        data source=.;
        initial catalog=Monsters2;
        integrated security=True;
        pooling=False;
        multipleactiveresultsets=True;
        App=EntityFramework
      &quot;" 
      providerName="System.Data.EntityClient" 
/>

The connection string doesn't actually have all the ridiculous line breaks and indentation - I'm just trying to make it easier to read. Anyway, that connection string is basically identical to the connection string used in the supporting EF project upon which it is modelled. How do I correct the situation, to make the "add controller" dialgoue happy?

share|improve this question
I had a web.config file for one of my projects and it was divided into parts. When I try to add controller like you did, I got the same error. I make it one file and it worked magically. didn't dig into it much though. – tugberk Nov 23 '11 at 8:07
Is your second project a class library project ? – Misi Nov 8 '12 at 12:46
I have something similar only with a MVC 4 project and I get :_'Unable to retrive metadata for 'ClassLibrary1.TableName1'. The specified named connection is either not found in the configuration, not inteneded to be used with the EntityClient provider, or not valid.'_ – Misi Nov 8 '12 at 12:47
Try this link, this might help even more for you: stackoverflow.com/a/14354851/1983024 – nathan742 Jan 17 at 1:10

5 Answers

Try this:

<add name="Monsters2Entities" 

    connectionString="
      metadata=res://*/Monsters.csdl|
               res://*/Monsters.ssdl|
               res://*/Monsters.msl;
      provider=System.Data.SqlClient;
      provider connection string='
        data source=.;
        initial catalog=Monsters2;
        integrated security=True;
        pooling=False;
        multipleactiveresultsets=True;
        App=EntityFramework
      '" 
      providerName="System.Data.EntityClient" 
/>

I have replaced &quot; with '

share|improve this answer
Changing the encoded ticks for literal ticks did not fix the problem. I believe the problem is with the semantics rather than the syntax. – Brent Arias Nov 24 '11 at 19:09
I get Unable to load the specified metadata resource. – Maslow Jan 31 at 17:01

Just copy the connection string information from your EF model project App.Config into your and watch that you do not repeat any sections (entityFramework section for example)

share|improve this answer

I found thjis helped when I had this problem:

Uninstalled the pre-release version of EF and installed EF5 Went to Sql Server Object Explorer and deleted the db. Rebuilt the solution used PM> Update-Database -Verbose

Perhaps the problem was with pre-release EF or just cleansing the palate was all it needed.

I'm quite new to all of these but this did let me use the Add Controller scaffolding tool with the "MVC controller with read/write actions and reviews, using Entity Framework" template selected.

share|improve this answer
Welcome to So. probably a question is asked in the answer reply block. Please write a new question for such kind of queries. – Luv Dec 27 '12 at 13:08
Thank you. I wasn't asking a question. Trying to offer assistance with the solution I found when facing the same problem. – ajw1970 Dec 28 '12 at 15:29

First of all you should check your connection string must be in your Web.Config file in the ROOT! of your project after that check if there is another connection string or not if there is another connection string replace it with your connection string.... This solved my problem which was same as your's....

share|improve this answer

first need to install package entity framework

go to tool> Libray package manager> pakage manager console > :install entity framework

share|improve this answer
1  
He would have trouble having Entities if he did not have EF installed already. – Andrew Barber Aug 27 '12 at 18:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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