jojacafe
12/3/2015 - 4:59 PM

From http://stackoverflow.com/questions/2281083/using-more-than-one-condition-in-linqs-where-method

codebase.Methods.Where(x => x.Body.Scopes.Count > 5)
                .Where(x => x.Foo == "test");
codebase.Methods.Where(x => (x.Body.Scopes.Count > 5) && (x.Foo == "test"));