Karsten
Karsten

Reputation: 8154

Entity framework supported databases

I'm going to make a end-user desktop application, so I need a relative small database, such as Firebird or SqlLite. Does the Entity Framework 4 support other databases than SQL Server?

Upvotes: 7

Views: 6144

Answers (2)

Tinaira
Tinaira

Reputation: 877

Entity Framework supports these database providers:

  • MS SQL Server
  • SQLLite
  • MySQl
  • Oracle
  • PostgreSQL
  • Microsoft SQL Server Analysis Services (SSAS)
  • Informix

Upvotes: 0

Richard Szalay
Richard Szalay

Reputation: 84794

ADO.NET Data Providers on MSDN lists several third party data providers for ADO.NET. Firebird and SQLite both look like what you are after, and both include Entity Framework 3.5 support (though I can't see any mention of EF4 support).

Upvotes: 10

Related Questions