We have a part of our program that has a massive data entry screen. It is where our customers spend a majority of their time. We have one repository that loads most of the information for it and saves the records but we have other repositories that we use as well. With the context this all worked because the repositories shared the same manager, but now I am running into a lot of issues because the entities are coming from different managers and are trying to be integrated with the main repository.
Is there a way to share managers between different repositories?
Should I be importing the items into my main repository?
What should I do at this point?
Thanks
John