Let's say I have a Store entity that contains a collection of Products. So I grab my Store and Products like this:
var store = entityLoadByPK("Store", 13);
var products = store.getProducts();
Now I'd like to sort and filter Products, which at this point is an in-memory collection (let's assume that the proxies have been resolved). Is this possible in ColdFusion, and if so, how would I do it?
Side note: I'm basically looking for something similar to C# LINQ's features, where I can do:
var store = session.Query<Store>().Single(x => x.Id == 13);
var products = store.GetProducts();
var sortedProducts = products.OrderBy(x => x.Name).ToList();
var filteredProducts = products.Where(x => x.Name.Contains("Shampoo"));