LINQ to SQL and alternate Providers
Posted by: Rick Strahls WebLog,
on 18 May 2009 |
View original | Bookmarked: 0 time(s)
Ive tried an interesting experiment today trying to see if I can get LINQ to SQL to run with a custom ADO.NET Data Provider Ive created some time ago. Basically I implemented a provider that is a proxy to a remote Web service that can marshal SQL commands via Web Requests on a remote server. I implemented a custom provider for this interface that ships XML across the wire and marshals raw SQL commands to the Web server to process. It works well using plain ADO.NET and my own internal business...