Reputation: 817
I am want to start a new project using entity framework 6. I have decided to use Database First approach. I want to know if it is possible to use Oracle database for my new project with entity framework?
Upvotes: 1
Views: 105
Reputation: 2169
Yes it possible. And here you can find a tutorial about it from Oracle .
Upvotes: 1
Reputation: 54417
It's not a matter of Entity Framework supporting Oracle. It's the other way around. Entity Framework supports any data source, as long as a provider is written for it. You need to install an Oracle provider with EF support. If I'm not mistaken, the latest version of ODP.NET, which is downloadable from Oracle, has EF support. It will generate a model from a database but whether it will go the other way, I don't know.
Upvotes: 1