I know this may have been answered but SubSonic 2.2 causes an error in the SQL provider when trying to do a Left join (Left inner join to subsonic)
instead of creating SQl like
SELECT * FROM table1
LEFT JOIN table 2 ON table1.id = table2.id
it creates:
SELECT * FROM table1
LEFT INNER JOIN table 2 ON table1.id = table2.id
and this errors as invalid SQL code.
is there a work around? As i spose you're not supporting it at all anymore?