Hi,
I got a quite annonying problem regarding my custome RoleProvider. Whenever I am trying to run my role-methods connectionString is empty. The DataAccess is realized with ADO.NET Entity Framework. My custom MembershipProvider and my custome ProfileProvider are working perfectly. I have got no glue, what I am doing wrong.
Here is a listing of my relevant files:
<roleManager enabled="true" defaultProvider="eCloudRoleProvider">
<providers>
<clear/>
<add name="eCloudRoleProvider"
type="eCloud.Web.Models.Provider.eCloudRoleProvider"
connectionStringName="eCloudEntites"
applicationName ="/" />
</providers>
</roleManager>
My initiliaze-methods of the the custom RoleProvider looks like that:
p ...
Go to the complete details ...