Connecting from .NET applications and Visual Studio
You can use Oracle Data Provider for .NET (ODP.NET) and Oracle Developer Tools for Visual Studio (ODT) to connect to Oracle Autonomous Transaction Processing and Oracle Autonomous Data Warehouse. Visit the Oracle .NET Developer Center to learn more about ODP.NET and ODT.
If you are using Oracle Entity Framework and NuGet, download Oracle.ManagedDataAccess.EntityFramework version 12.2.20190115 or higher. You can also use version 12.1.181215 or higher of this Oracle Entity Framework assembly in the 12.1 family. All Oracle Entity Framework Core versions are supported. Note: Other versions will not work with Oracle Autonomous Database.
In the directory where you unzipped the files, open the the sqlnet.ora file. Edit sqlnet.ora and change the ?/network/admin entry to the directory where the zip file contents were placed. Note that if the path contains special characters, these characters will need to be escaped.
For example, change:
WALLET_LOCATION = (SOURCE = (METHOD = file)
(METHOD_DATA = (DIRECTORY=?/network/admin)))
WALLET_LOCATION = (SOURCE = (METHOD = file)
(METHOD_DATA = (DIRECTORY=D:\MyApp\bin))) Below are links to sample code that you can use to connect to Oracle Autonomous Database with ODP.NET.