Linq allows you to create new object inside of a query expression. This is useful when you have classes that encapsulate generation of a list. I’m wondering how you dispose
OK; I'm hoping this is coincidence, but: SelectMany; combining IDisposable and LINQ, which (with the custom SelectMany implementation) would allow:
var foo =
from r in Enumerable.Range(1, 3)
from gen in new Generator()
from g in gen.Gen(r)
select g;
(note that I'm assuming there is a sensible reason to do this per r)
or with the Using() extension method (instead of SelectMany):
var foo =
from r in Enumerable.Range(1, 3)
from gen in new Generator().Using()
from g in gen.Gen(r)
select g;