I am trying to connect my new Project (ASP.Net Core Framework) with Access Database
.
What do I need to enter into: appsettings.json -> \"Conne
You can use the Entity Framework Core
which is highly recommended for ASP.net Core
applications. Also there are a lot of tutorials out there for using it.
The official documentation lists a suitable Provider for EF Core:
EntityFrameworkCore.Jet -> Microsoft Access files
Please make sure reading the limitations first from the GitHub Page and check if it's still passes your requirements.
Personally i haven't used it yet, but i'm pretty sure that the whole thing can't be too complicated.