Are you trying to install JetEntityFrameworkProvider for your WinForms project and encountered the following error? Ensure the provider factory is registered in the app.config or web.config files for all projects that use EF6 in your solution. If your solution consists of just one project, adding the following snippet to your project’s config file should resolve […]
Tag: JetEntityFrameworkProvider
Jet Entity Framework Provider – in Code Setup
You have been tasked to implement Jet database provider in EF6 to support older database types like MS Access and you want to do this in code for VB.NET? This achieves the same effect as configuring your app.config but adds flexibility of choosing provider based other conditions. In my case, I have to choose and […]