I have a left outer join (below) returning results as expected. I need to limit the results from the \'right\' table to the \'first\' hit. Can I do that somehow? Currently,
You could do something like:
var q = from c in (from s in args select s).First() select c;
Around the last part of the query. Not sure if it will work or what kind of wack SQL it will produce :)