I've got a small problem with my app design and MVC membership.
In my site I have 3 tables: users, customers and authors, none of them are related to one another but each of them is connected to a bunch of other tables so I cannot really combine them into one big users table.
I'm not sure how to implement the all membership, authorization stuff since I've got three login forms, one for each DB entity and when calling User.Identity.IsAuthenticated I won't be able to tell who is logged in.
Any ideas?