We are creating a big solution which has multiple WEB Project (like Accounts, HRMS, Inventory and many more). All the modules are pluggable and installed as per client's request. All the Projects have some methods which are used by other modules, like Accounting module might use GetEmployee method of HRMS, and HRMS might use the GetAccountBalanceForEmployee of Accounts. There is a common Project which tries to call the method dynamically (by loading the respective project dll). The problem is that when the methods are called, we get an error saying "The model backing context has changed since the database was created". If the same method is called from inside the same project no error occurs.
Thanks in Advance.
Unni