Imagine an e-commerce website where users can create their own stores.
I'm designing internal messaging system for such website, and I'm currently hesitant as to how to implement it database-wise.
The following scenarios need to be supported:
- [u => u] user can send message to another user;
- [u => s] user can send message to a store;
- [s => u] store can send a message to a user;
- [s => uu] store can send a message to all its customers.
If I only had a simple Messages table, and a store wanted to broadcast a message to 10,000 users, I would need to insert 10,000 similar records at once.
Another approach is to keep PersonalMessages and BroadcastMessages separate, and introduce BroadcastMessageReceivers "mapping" table. However, this approach complicates working with individual messages, like deleting, showing the inbox and outbox, etc.
Is there any recommended option, considering I'm using Entity Framework and MS SQL 2008?