When will Oracle Database support for Dotnet Core be available?

I want my DotnetCore 2.0 application to connect to Oracle, however I cannot find any official documentation from Oracle support. It is expected that it will be released by the end of 2017 at this link http://www.oracle.com/technetwork/topics/dotnet/tech-info/odpnet-dotnet-core-sod-3628981.pdf, but it is still not available .

We are trying with other unofficial libraries (dotNetCore.Data.OracleClient) to connect to oracle according to this topic. How to connect to an Oracle database. Connection from .Net Core, but has many limitations, such as

  1. we cannot call stored procedures with all parameters
  2. Dotnet parameter types, such as ref, are not available when called

We have a database in Oracle and an application in DotNet 4.6. We are going to rewrite our application in Dotnet Core, which uses the Oracle database.

+6
source share
3 answers

There is currently an official data provider for .NET Core published by Oracle on nuget.

+3
source

Beta .Net Core Managed Driver released by Oracle at the end of January 2018 http://www.oracle.com/technetwork/topics/dotnet/downloads/net-downloads-160392.html . The supported platform identifier in doc is Win and Linux.

Nuget: https://www.nuget.org/packages/Oracle.ManagedDataAccess.Core

: fooobar.com/questions/722543/...

+5

A beta version has been released for the same.

https://www.nuget.org/packages/Oracle.EntityFrameworkCore/

0
source

Source: https://habr.com/ru/post/1691938/


All Articles