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

前端 未结 4 706
猫巷女王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:41

    Use the "Access Database Engine", which provides an ODBC interface to your application. Be sure to use the 64-bit version (since dotnet core is 64 bit only). Note that it is safe for single-threaded access only. Use the passive parameter at install since the additional Access components are not needed.

    AccessDatabaseEngine_X64.exe /passive

提交回复
热议问题