29
<add extension=".edmx" type="System.Data.Entity.Design.AspNet.EntityDesignerBuildProvider" />

this is the Assembly of my System Web.config file

2

2 Answers 2

51

Open your web.config and add this line below in the Assemblies section:

<add assembly="System.Data.Entity.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />

For more information, check this link:

http://forums.asp.net/t/1698282.aspx

Hope this helps

Sign up to request clarification or add additional context in comments.

1 Comment

If it doesn't work for you, checkout @GregoryBrad's answer below.
24

Adding to @wandos answer, here is the layout for web.config:

<system.web>
  <compilation debug="true" targetFramework="4.5">
    <assemblies>
      <add assembly="System.Data.Entity.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
    </assemblies>
  </compilation>
  <httpRuntime targetFramework="4.5" />
</system.web>

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.