var stream = from c in cars where c.colour == Colour.Red select c.wheels;
var stream = cars .Where (c => c.colour == Colour.Red) .Select (c.wheels);
Beachte:
from
var
dmcs Foo.cs -r:System.Core