Recently, I was tasked with building an audit trail log for a legacy WinForms VB.NET project that uses Entity Framework v6.4 on .NET 4.5. Rather than reinventing the wheel, I opted for an open-source library like Audit.NET v20.2.4. The default settings are quite nice, as they list all changes by column name and map the […]
Tag: VB.NET
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 […]