eg said:
Are there any other .net data providers for the entity framework,
other than SQL Server? I am looking for an ODBC and MS Access driver
that will work with 3.5 and 4.0 Entity Frameworks?
None at present. Not sure what the future holds.
If you want an O/R Mapper that works with other databases, however,
there are options.
In addition, if you can build the transport, the POCO option in .NET 4.0
(EF 4.0?) gives you a CLR compliant model to work with and objects that
actually "make sense". If you object is to sell a product that can use
multiple types of DBMSs, then POCO is an option, realizing you will only
get the drag and drop mapping goodness in SQL Server and will have to
populate with other languages. It is not the same as EF for everything,
but it is a way to start. You can always swap out data transports later
if EF migrates, so it is a decent path.
If you are not setting up for multiple data stores, then it could be
overkill.
Peace and Grace,
--
Gregory A. Beamer (MVP)
Twitter: @gbworld
Blog:
http://gregorybeamer.spaces.live.com
*******************************************
| Think outside the box! |
*******************************************