MS Access Database Connection with C# under ASP.Net Core

前端 未结 4 677
猫巷女王i
猫巷女王i 2021-01-20 02:51

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

4条回答
  •  一整个雨季
    2021-01-20 03:47

    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.

提交回复
热议问题