Can we create multiple entity framework in project for the same database?
I want to create entity framework for each subsystem. Some of subsystem have shared table.
Can we create multiple entity framework in project for the same database? I want
Share
It’s possible, and you can create multiple EDMX files as you wish.
But it’s not recommmended, as…
Instead, we created only one EDMX model and put it in a common library, which is then imported in many different sub projects.The only problem is, your connection string has to be defined correctly specifying common library resources.