I have a query with Include:...dbContext.Set<Person>().Include(x => x.Events)
...There will be 10s of Persons, but 10000s of Events for each Person....I am looking for a generic buffering solution to not use too much memory at any given time....If I use S...