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 […]
Category: Programming
Using AI to Find the Best Value Car: A Practical Guide
Are you in the market for a new car? I am, and I rely on online car listing aggregators to find my next perfect family hauler. With hundreds of listings, how do you find the best value? As a web programmer, I can’t resist performing some basic web scraping and running “AI-based” data analysis. AI […]
ReFresh: Angular
Intro Angular is an opinionated JavaScript (JS) framework designed for building single page applications (SPAs). Angular has been my JavaScript framework of choice. I follow its development and I use it in both personal and professional projects since its humble beginning from v2 in 2016. To stay up to date with the technology, from time […]
“other side closed” – AWS Lambda with Parameters and Secrets Extension
Secrets lambda extensions is optional and AWS maintained layer that provide fast access to secrets manager or parameter store. In fact, it is just locally available http server that you can query with your favorite http client to get your app’s secrets. By default it is available on port 2773. Recently I have come across […]
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 […]