So, I just started to implement my own custom membership provider to validate users against an external database. This worked fine but I was also forced to implement a custom role provider to get it to work. Is this the correct way to do it?
But now when I try to change properties on the user's profile (like full name, gender, birthday, ...) nothing is updated in the yaf_prov_Profile table.
After debugging I found out the yaf profile provider tries to fetch the userid using it's own membership infrastructure:
object userID = DB.Current.GetProviderUserKey(this.ApplicationName, username);
which of course fails because these tables are not used by my providers.
Am I doing something wrong here? It's not my intention to also make my own profile provider because the properties yaf is using are ok for me.
Hope someone can point me in the good direction. Please, please, please...
PS: the previous post was also mine.
Edited by user
11 years ago
|
Reason: not logged in