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"));