I suspect that queries are being run unnecessarily in situations like the following: ``` Query<Foo> whatever = new Query<Foo>(...); Foo x = whatever.ElementAt(1); Foo y = whatever.ElementAt(2); ``` This needs to be tested, and if necessary fixed.
I suspect that queries are being run unnecessarily in situations like the following:
This needs to be tested, and if necessary fixed.