After downloading EF6 via NuGet and trying to run my project, it returns the following error:
No Entity Framework provider found for the ADO.NET provider with invariant name 'System.Data.SqlClient'. Make sure the provider is registered in the 'entityFramework' section of the application config file. See http://go.microsoft.com/fwlink/?LinkId=260882 for more information.
My connection string code is:
<connectionStrings>
<add name="RaptorDB"
connectionString="Data Source=(LocalDb)\v11.0;Initial Catalog=RaptorDB;Integrated Security=True"
providerName="System.Data.SqlClient" />
</connectionStrings>

How can I resolve this error?



providersandproviderstuff, so consider removing it?