I am trying to create a program where that only one user can be in only one role at a time. I have developed a clunky means of removing the previously held role and then inserting the new role, but I do not like this.
I attempted to do this at the database level, one-to-many instead of many-to-many in the UsersInRoles table but I only seem to only have success in breaking the 'built-in' role management system. Using System.Web.Security.SqlRoleProvider
Just feel there is a more elegant solution as I am new to MVC but I cannot think of it.
Anyone have a suggestion?
System.Web.Security.SqlRoleProvider? – qntmfred Sep 1 '11 at 19:12