Using more than one condition in linq's where method

c#

Solution

You can roll your separate conditions into a single predicate if you like:

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

Or you can use a separate `Where` call for each condition:

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

Problem

I have a line of code using where: ``` codebase.Methods.Where(x => x.Body.Scopes.Count > 5); ``` How can I insert more than one condition? So I can say `x => predicate && y => predicate`? Thanks

Original source