Higeath
Higeath

Reputation: 109

Creating models from oracle database using Entity Framework

I am trying to simply generate models from my database, I can connect to my database using server explorer but when I get to entity framework wizard it doesn't show my data connection nor it allows to add an oracle database.

I have read about oracle developer tools for visual studio, but I don't have admin privileges on that pc is there anything else I could do or am I missing something? (maybe some nuget packages that would help me?)

Here as can be seen on the left I'm connected to my database: enter image description here Database wizard not showing my connection:

enter image description here And here when I click new Connection: oracle database is not an option. enter image description here

Upvotes: 1

Views: 1048

Answers (1)

ErikEJ
ErikEJ

Reputation: 41819

You need to install the Oracle Developer Tools for Visual Studio: http://www.oracle.com/technetwork/topics/dotnet/downloads/odacmsidownload-2745497.html

Upvotes: 1

Related Questions