What Dlls Do I need to create a project with oracle in visual studio 2015?

-1

Hello everyone, how are you? I am currently trying to create a new project in visual studio 2015 with the new version of oracle RC1 update 2 I would like to know which devart Dlls I need to configure my project to create connection to the bank and everything ... Thank you.

    
asked by anonymous 03.05.2016 / 02:09

1 answer

1

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.

    
03.05.2016 / 13:55