Используйте структуру внедрения зависимостей, чтобы внедрить контексты для ваших репозиториев.
public class FooRepository
{
FirstContext _fc;
SecondContext _sc
public FooRepository(FirstContext fc, SecondContext sc)
{
_fc = fc;
_sc = sc;
}
}
public class BarRepository
{
FirstContext _fc;
SecondContext _sc
ThirdContext _tc
public BarRepository(FirstContext fc, SecondContext sc, ThirdContext tc)
{
_fc = fc;
_sc = sc;
_tc = tc;
}
}