Does Siena have the ability to perform a query, retrieve rows and then reuse that set of rows in multiple queries with different filter params?
i.e. List<Foo> foos = Foo.all().filter("bar", "baz").fetch()
and then perform queries against this subset?
Thanks.