Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I reference System.Data.Odbc for dotnet core in my project?

Tags:

.net-core

odbc

I have a project I'm deploying in Linux using dotnet core and I need to read a .mdb file. I want to use ODBC for it but even as I see that System.Data.Odbc has already been ported here and that the documentation for the library is out here I can't find the nuget for it.

How can I download this library? Do I have to download the corefx project and build it by myself from here? When is this library going to be released? Is there another way to read my mdb file?

like image 610
Ana Franco Avatar asked Sep 03 '17 04:09

Ana Franco


1 Answers

dotnet add package System.Data.Odbc --version 4.5.0-preview1-25915-02 --source https://dotnet.myget.org/F/dotnet-core/api/v3/index.json
like image 178
Martin Avatar answered Oct 21 '22 23:10

Martin