I have two DbContext
, one for Asp.net Identity and other one is for the rest of my domain. Now according to this design I have many problems to manage Initializing database. As you may know I would like to seed those tables belong to each DbContext
which has its own issues. I want to know is this good idea to merge those DbContext
instead of having one for each one?
Any advice will be helpful.