无论如何让 ADO.NET 在 .NET Core 上工作?

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

我需要 ODP.NET(适用于 .NET 的 Oracle 数据提供程序)在 .NET Core 上,但无论如何找不到使其工作。

当我引用 OracleConnectionOracleCommand 类 时,该项目需要 System.Data 我在 .NET Core 中找不到的程序集。

所以没有任何解决方案可以在 .NET Core 上使用 ADO.NET 吗?

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.