I'm developing content management system (CMS). But this different from other CMS. I can maintain one CMS and define content to multiple website. Like a Blog. But some website has different tables.
My current CMS has one database (MS SQL 2005)
Database include lot of tables:
Main tables
- User
- Page
- Modules
- Portals
etc...
Web 1 tables
- web1Post
- web1CustomTable
- web1Table2 etc...
Web 2 tables
- web2Customtable3
- web2CustomTable4
- web2Table4 etc...
Every custom tables joined User, Portal and other some tables. This is successfully works.
But i want to separate database to MainDatabase, web1database, web2database etc...
I'm trying to separate database. But problem is User, Portal and connected tables has problem
I'm using EntityFramework, Asp.net MVC
What is best way to solve this?

