LINQ to SQL with RDBMS other than MS SQL Server - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T23:48:39Zhttp://stackoverflow.com/feeds/question/225595http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/225595/linq-to-sql-with-rdbms-other-than-ms-sql-server3LINQ to SQL with RDBMS other than MS SQL ServerNgu Soon Hui2008-10-22T12:49:10Z2008-10-23T15:53:15Z
<p>Is there any plans for Microsoft to support LINQ to SQL beyond MS SQL server?</p>
http://stackoverflow.com/questions/225595/linq-to-sql-with-rdbms-other-than-ms-sql-server/225609#2256090Answer by hangy for LINQ to SQL with RDBMS other than MS SQL Serverhangy2008-10-22T12:52:55Z2008-10-22T12:52:55Z<p>I do not know whether Microsoft plans to do so, but it is probably unlikely. However, if you want to use something similar, you could probably use <a href="http://www.ohloh.net/projects/dblinq" rel="nofollow">DbLinq</a> meanwhile.</p>
http://stackoverflow.com/questions/225595/linq-to-sql-with-rdbms-other-than-ms-sql-server/226754#2267544Answer by DamienG for LINQ to SQL with RDBMS other than MS SQL ServerDamienG2008-10-22T17:19:40Z2008-10-22T17:19:40Z<p>Microsoft has no plans to extend LINQ to SQL beyond SQL Server and it wouldn't make much sense to do so. The majority of code in LINQ to SQL is in the implementation of the SQL Provider.</p>
<p>Microsoft offers Entity Framework as its cross-database-platform ORM solution and other ORM solutions are implementing LINQ providers too.</p>
http://stackoverflow.com/questions/225595/linq-to-sql-with-rdbms-other-than-ms-sql-server/226771#2267710Answer by liggett78 for LINQ to SQL with RDBMS other than MS SQL Serverliggett782008-10-22T17:26:00Z2008-10-22T17:26:00Z<p>I don't think MS will do it, I guess they will invest heavily into Entity Framework from now on.</p>
<p><a href="http://www.devart.com/linq/" rel="nofollow">Devart</a> has something to offer here, but I've not tested their LINQ products extensively, so can't say anything about the quality.</p>