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
What would "y" represent?
You can just use a standard && condition. No need for a "y":
codebase.Methods.Where(x => x.Body.Scopes.Count > 5 && x.Body.SomethingElse < 14);