You have not mentioned whether you want to work with ADO.NET or Entity Framework.
In any case, I advise you to work with EF6 Code First
, so just install the following NuGet
:
Official Oracle ODP.NET, Managed ... 12.1.2400
If you prefer, you can do this by command line: PM> Install-Package Oracle.ManagedDataAccess.EntityFramework
It already has dependency on Oracle.ManagedDataAccess
(If you want to work with ADO.NET) and EntityFramework
.
Remembering that you should not use EF7 to work with Oracle, it still does not support Oracle.
Remembering that Visual Studio
allows you to create your Code First
Template in an "automated" way, so add an item to your ADO.NET Entity Data Model
project, then choose Code First from Database
.
If you do not have this option, you may need to install Entity Framework 6 Tools for Visual Studio 2012 & 2013 , but since you're using VS 2015, I do not think that's necessary.