Is there a way to use one dbContext in a different threads asynchronously?... var context = new Entities();
Task.Factory.StartNew(() => context.Companies.Include(x => x.Address).First());
Task.Factory.StartNew(() => context.Companies.Include(x => x.Owne...