I divided a large scale app into many different Bounded Contexts and generated BC specific entities in seperate projects through T4. For example, ProjectA contain entities A,B,C and the ProjectB contain D,E,F. There is only edmx.
Is it better to use only one EF dbContext class for the persistance of the all different BC entities or use seperate dbContext for each BC? As I understand multiple dbContext classes mean the app has to keep multiple connections which may be good for performance, but I dont know it's impact on the server resources.