When we query our data, we often need more than one filter to get the exact data set we are looking for. In SQL, we handle this with AND and OR clauses. We can achieve the same thing with collections.
To add an AND clause to your query, just simply add another method call. This will append the seco...