Can I store my active Entity framework Database Context for the request, as a static property somewhere, so it's easily fetchable from Validators, helpers etc.
**E.G set it from a global action filter onto a static class as
public static DBContext GlobalHelper.ActiveDbContextForRequest;
Does each request share these static properties though? If they do I suppose it cannot work.