I'm not that clear on the best-practice concerning the use and re-use of the entity-framework Context
.
My question is, should I try to create 1 context and re-use it many times for different queries or should I create a new context for each query?
For example if I have a form with 10 charts all with data queried from the same tables, should the 10 queries be from the one context or 10 different contexts?
From a code encapsulation point-of-view I'd prefer to create 10 new contexts, is this a good idea and is it scalable?