Thanks to the help with this.
Tried this, without luck..
I know
from f in list
where f.bar == someVar
select f
can be written as
list.Where( f => f.bar == someVar );
Can a similar expression be created from
from f in foo
from b in f.bar
where b.something == someVar
select f;
?
Edit: Sorry, I forgot f.bar in the second example is a list of objects.