I am actually on my first experience with .NET Core and trying to do a simple console application to fetch data from a MS Access database, and dump it into my MySQL database.
Normally I would have used Oledb and fetch all the data into a datatable, then just write it in MySQL. But with .NetCore, we do not have Oledb! Since .NetCore is quite new, I am not able to find some example on the net, how we can do this process.
I have installed the EntityFrameworkCore nuget, but still not able to manipulate it, nor find any documentation of how to fetch the data.
Has anyone been working with .NETCore and has a sample code of how he is fetching the data?