MS Access Database in .NET Core

I need to read MS Access in my ASP.NET Core application. The problem is that OleDb is no longer supported in .NET Core. Is there any other way to work with the MS Access database?

+5
source share
1 answer

Perhaps this library will help you

https://github.com/bubibubi/EntityFrameworkCore.Jet

You can also get detailed information at this link https://github.com/aspnet/EntityFramework.Docs/issues/472

-1
source

Source: https://habr.com/ru/post/1268186/


All Articles