You are using the following LINQ to Entities query: var query = from p in myContext.Products where p.Price < 50 select p; int numberOfItems = query.Count(); var products = query.ToList(); You are suffering performance problems. How can you improve your query? (Choose all that apply)