I am writing two MVC5 (with EF6 and code-first) web apps using generic UnitOfWork that gets the dbContext injected by Unity.
We are required to have two databases (Main Database and Project Specific DB) and have a reference between the two.
Here's an example:
- in the main context I have an entity
Employee
- in the project context I have an entity
Department
I need to create Departments in my Project that group and organize Employees from Main.
Can I have...
ICollection<Employee> Employees { get; set; }
in the Project DB's Department
Entity ? (the relationship between Employees and Departments is many-to-many)
How would you go about having something like this done ?