Muneer
Muneer

Reputation: 7564

Any better way to use Oracle/MySQL with .NET Entity Framework?

I wonder the simplicity of working with Microsoft SQL database server with .NET Entity Framework. Is there a possible way to use it with Oracle & MySQL database servers?

Upvotes: 1

Views: 334

Answers (3)

John
John

Reputation: 11

Oracle Data Access Components for .NET (http://www.oracle.com/technetwork/topics/dotnet/downloads/oracleefbeta-302521.html) includes also Oracle Data Provider for .NET 4 11.2.0.2.40.

A nice tutorial how to use Model-First approach can be found at http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/dotnet/EntityFrameworkOBE/EntityFrameworkOBE.htm.

Good luck,

LM

Upvotes: 1

R. Martinho Fernandes
R. Martinho Fernandes

Reputation: 234384

You could use another ORM, like NHibernate which supports Microsoft SQL, Oracle, and MySQL, among many others.

If you want/need to stick with EF, there are already questions on SO about using it with MySQL and with Oracle.

Upvotes: 1

Related Questions