willem
willem

Reputation: 27027

Can the Entity Framework (v4) run on anything other than SQL Server?

I'm evaluating a few ORM's for a new project. Can the Entity Framework (v4) run on anything other than SQL Server? (i.e. MySQL?)

Upvotes: 2

Views: 237

Answers (3)

Ladislav Mrnka
Ladislav Mrnka

Reputation: 364249

Here you have list of available providers for other database servers.

Upvotes: 1

Noel
Noel

Reputation: 600

It sounds like it can, but there are not out of the box extensions to allow it to build the templates for code generation.

Here is another SO question that relates

This question directly relates to EF and MySQL

And a third that looks like it has implementation steps

Upvotes: 1

Kris Ivanov
Kris Ivanov

Reputation: 10598

the short answer: yes Using MySQL with Entity Framework

Upvotes: 3

Related Questions