When using the SqlBuilder class of DBExtensions, is it possible to build multiple select statements that are executed in a single round trip?
Something along the lines of:
select t1.* from Table1 t1 where t1.Foo = 'Bar 1';
select t2.* from Table2 t2 where t2.Foo = 'Bar 2';
For the building part, you can do:
About execution, I have no idea if your ADO.NET provider supports batch SELECT queries, maybe you want to do a UNION query instead?