Reputation: 8154
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
Reputation: 877
Entity Framework supports these database providers:
Upvotes: 0
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