ODP.NET Core is an ADO.NET driver that provides fast data access from Microsoft .NET Core clients to Oracle databases. It runs on both Windows and Linux. ODP.NET consists of a single 100% managed code dynamic-link library, Oracle.ManagedDataAccess.dll, available via NuGet deployment.
In this post, you will learn how to create an ASP.NET Core web application, download ODP.NET Core from nuget.org, configure ODP.NET using the OracleConfiguration class, and connect to the Oracle database.
Create ASP.NET Core Web Project in Visual Studio
1.Open Visual Studio. Click 'File'. Select New>Project.
2.Select Visual C#>.NET Core> ASP.NET Core Web Application. Rename the Web Application as First_Web_Application and click OK.
3.Select Empty Project template and click OK.
4.First_Web_Application is created, you can explore the structure of the project in the Solution Explorer.