views:

310

answers:

3

Is there any plans for Microsoft to support LINQ to SQL beyond MS SQL server?

A: 

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 DbLinq meanwhile.

hangy
+5  A: 

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.

Microsoft offers Entity Framework as its cross-database-platform ORM solution and other ORM solutions are implementing LINQ providers too.

DamienG
A: 

I don't think MS will do it, I guess they will invest heavily into Entity Framework from now on.

Devart has something to offer here, but I've not tested their LINQ products extensively, so can't say anything about the quality.

liggett78