No Entity Framework provider found for the ADO.NET provider with invariant name 'System.Data.SqlClient'
No Entity Framework provider found for the ADO.NET provider with invariant name 'System.Data.SqlClient'
No Entity Framework provider found for the ADO.NET provider with invariant name 'System.Data.SqlClient'
Re: No Entity Framework provider found for the ADO.NET provider with invariant name 'System.Data.SqlClient'
I just got into the same problem and it looks like EntityFramework although installed from NuGet Package Manager was not correctly installed in the project.
I managed to fix it by running the following command on [Package Manager Console](http://docs.nuget.org/docs/start-here/using-the-package-manager-console):
```
PM> Install-Package EntityFramework
```
I managed to fix it by running the following command on [Package Manager Console](http://docs.nuget.org/docs/start-here/using-the-package-manager-console):
```
PM> Install-Package EntityFramework
```