Reputation: 8144
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: 6140
Reputation: 857
Entity Framework supports these database providers:
Upvotes: 0
Reputation: 84724
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