Yves
Yves

Reputation: 3902

Is there anyway making ADO.NET work on .NET Core?

I need ODP.NET (Oracle Data Providers for .NET) on .NET Core but can't find anyway to make it work.

When I reference OracleConnection or OracleCommand classes, the project needs System.Data assembly which I can't find in .NET Core.

So isn't there any solution to use ADO.NET on .NET Core?

Upvotes: 4

Views: 4424

Answers (1)

bricelam
bricelam

Reputation: 30375

The System.Data.Common contract is available for providers to start implementing against. So far, the only implementations on .NET Core that I know of are System.Data.SqlClient and Microsoft.Data.Sqlite.

Upvotes: 3

Related Questions