Unable to determine the provider name for provider factory of type 'System.Data.EntityClient.EntityProviderFactory'. Make sure that the ADO.NET provider is installed or registered in the application config.
I am trying to do simple query to database:
var log =
_logDb
.Logs
.Where(l => l.CustomerId == item.CustomerId)
.FirstOrDefault();
Connection string: http://pastebin.com/ngqB9Q6L
The thing is when I quickwatch base context (values) there is no database. It is empty (I will get pic soon if needed).
Web.config: http://pastebin.com/xp4iKnta