I am getting an error when I delpoy my solution to the web server saying that it cannot load the assembly Entity Framework 4.1. I have recently installed .NET framework 4 on the web server in order to make use of the new entity framework. Do I need to install EF 4.1 on the web server or is there any way to get around that?
I have tried to copy local the Entity Framework reference in my project.
I figured out what was going on.
When I did a publish to the file system it did not copy over the Entity Framework dll even though I set Copy local to true. Maybe this is an error in the publishing feature. I found the dll in the bin / debug folder of my project and copied them over the web server.
Works great!
Thanks to everyone that helped!