Something really confusing about how roles and membership tables establish a relationship - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T00:59:01Zhttp://stackoverflow.com/feeds/question/884834http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/884834/something-really-confusing-about-how-roles-and-membership-tables-establish-a-rela1Something really confusing about how roles and membership tables establish a relationshipSourceC2009-05-19T20:24:22Z2009-05-19T23:24:30Z
<p>Hello,</p>
<p><br></p>
<p>I know how to create users and assign them to roles etc, but when I tried to dig a bit deeper into how roles and membership tables are able to establish a relationship between each other, I got totally lost ( BTW – I do know how foreign/primary keys work ;) )</p>
<p>BTW - I've created tables in databases using aspnet_sqlreg wizard </p>
<p><br></p>
<p>Q1 - Both <em>SqlRolesProvider</em> and <em>SqlMemebershipProvider</em> have a property <em>ApplicationName</em>. I thought that in order for the two providers to be able to create association between their users and roles, they would both have to use same value for <em>ApplicationName</em> property. But that doesn’t seem to be the case. </p>
<p>A) Anyways, I assume that <em>SqlRolesProvider.ApplicationName</em> property is only used to distinguish between table entries belonging to different role providers, but they don’t use that property in order to associate their roles only with membership providers with the same <em>ApplicationName</em> value?!</p>
<p>B) But wouldn’t it be most practical if roles providers could only be associated with membership providers with the same <em>ApplicationName</em> value ( thus where <code>SqlRolesProvider.ApplicationName == SqlMemebershipProvider.ApplicationName </code>)?! </p>
<p><br></p>
<p><br></p>
<p>Q2 - I was also curios whether roles and users could be associated if roles provider was connected to <em>DB1</em>, while membership provider was connected to <em>DB2</em>. Somehow I was still able to assign users to different roles, even though roles were defined in different database. </p>
<p><br></p>
<p>A) But why is that? Namely, if <em>SqlRolesProvider.ApplicationName = “rolesP”</em> ( <em>ApplicationID=10</em> ) and <em>SqlMembershipProvider.ApplicationName = “membership”</em> ( <em>ApplicationID=100</em> ), then in order for the table in <em>DB1</em> to have relationship with table in <em>DB2</em>, the two would have to reference each other via <em>ApplicationName</em> entry ( actually via ApplicationID), which would act as foreign/primary key.</p>
<p>But the thing is, none of the foreign key fields in <em>DB1’s</em> tables holds a value equal to <em>SqlMembershipProvider.ApplicationID = 100</em>, which would suggests that there is no relationship established between tables in <em>DB1</em> and <em>DB2</em> ( I know that is not the case, since I’m able to assign users to roles ). So what am I missing? </p>
<p><br></p>
<p>thanx</p>
<p><br></p>
<p><strong>EDIT:</strong></p>
<p>Uh, don't know if anybody will still be reading this, but I did some more digging and got even more confused:</p>
<p>If both roles (with <em>applicationName=R1</em> and <em>applicationID=10</em>)and membership provider(with <em>applicationName=M1</em> and with <em>ApplicationID=100</em>) are in same DB, then creating a new user causes *aspnet_Users* table two create two entries for same user name– one with <em>ApplicationID=10</em> and other with <em>ApplicationID=100</em>. As far as I know, when new user is created, only one field ( with <em>ApplicationID=100</em> )should be added to aspnet_Users. Uh?!</p>
http://stackoverflow.com/questions/884834/something-really-confusing-about-how-roles-and-membership-tables-establish-a-rela/884870#8848701Answer by vidalsasoon for Something really confusing about how roles and membership tables establish a relationshipvidalsasoon2009-05-19T20:32:36Z2009-05-19T20:32:36Z<p>I had a hard time following what you were saying... </p>
<p>Anyway... you seem to be looking at the database too much. Have you configured the web.config for your membership providers and were you able to query "Membership" using C# and NOT SQL queries?</p>
http://stackoverflow.com/questions/884834/something-really-confusing-about-how-roles-and-membership-tables-establish-a-rela/885534#8855341Answer by Alexander Kahoun for Something really confusing about how roles and membership tables establish a relationshipAlexander Kahoun2009-05-19T23:24:30Z2009-05-19T23:24:30Z<p>Have you looked at the aspnet_UsersInRoles Table. This is the table that links the user to the role. The RoleProvider is designed to be separate from the MembershipProvider so that you can have them in separate DB's. Additionally it allows for you to set up roles for one application name and re-use those roles in two separate applications that each have a different application name for the membership provider. Don't get stuck in the mentality that you have to have the same application name for both providers or that your application name needs to match the running application. You don't need to have any name at all if you don't want to. I hope that this helps.</p>