Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Connect to Oracle Database with ASP .Net Core

Back in ASP.NET core RC1, the full .NET 4.5 framework was supported, and I have been using Oracle Managed Client to connect to Oracle Databases.

In RC2, and RTM, the full .NET framework is not supported, and instead only .NET standard is. This means that the Oracle Client is no longer compatible with .NET Core.

Are there any alternative options in connecting to Oracle databases?

like image 301
painiyff Avatar asked Jun 16 '16 22:06

painiyff


People also ask

Can we use Oracle with ASP NET?

Oracle Developer Tools for Visual Studio is a tightly integrated "add-in" for Visual Studio. This tight integration makes it easy to create ASP.NET Web Applications that access Oracle database without requiring the developer write much code.

How do I connect to Oracle database?

To connect to Oracle Database from SQL*Plus: If you are on a Windows system, display a Windows command prompt. At the command prompt, type sqlplus and then press the key Enter. At the user name prompt, type your user name and then press the key Enter.

Does EF core work with Oracle?

To use Oracle in EF Core, we need to install Oracle. EntityFrameworkCore in your project using Package Manager Console window. It will get all the packages required for EF Core. Now, you are ready to start your application.


1 Answers

The full .NET Framework is supported in RC2 and beyond.

like image 160
Pawel Avatar answered Sep 29 '22 15:09

Pawel