Is there a way to do an insert/select with Linq that translates to this sql:
INSERT INTO TableA (...) SELECT ... FROM TableB WHERE ...
context .TableA .InsertAllOnSubmit( context .TableB .Where( ... ) .Select(b => new A { ... }) );