I was wondering if anybody could point me to an example of how to query an mdb (Access database) from a .Net application using linked servers in SQL Server.
The current database is in Access, with the intention of later switching to SQL Server entirely, so I'd like to use LINQ-to-SQL or the entity framework (or other ORM such as NHibernate) to "future-proof" my code so it will be easy to switch once we migrate away from Access.
My current setup is querying the mdb file directly using an OLE data provider, but there is no LINQ data provider available and that is my strong preference.
Any tips or advice would be appreciated.
Thanks.