I am trying to connect my new Project (ASP.Net Core Framework) with Access Database
.
What do I need to enter into: appsettings.json -> "ConnectionStrings"?
And do I have to install something for it?
This framework is new and unfortunately I found no much on the Internet.
I need to connect exactly "Access database".
I would be very happy for detailed information.
From this link : https://blogs.msdn.microsoft.com/dotnet/2016/11/09/net-core-data-access/
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
You can use the
Entity Framework Core
which is highly recommended forASP.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:
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.
Looks here: https://www.connectionstrings.com/
Specifically, here: https://www.connectionstrings.com/access/
Also, try this.
Try this as well...