Last year, Scott Guthrie stated “You can actually override the raw SQL that LINQ to SQL uses if you want absolute control over the SQL executed”, but I can’t find documentation
DataContext x = new DataContext
Something like this perhaps?
var a = x.Where().with()...etc
var a = x.Where().with()
It lets you have a much finer control over the SQL.