Implementing Custom Membership Provider Membership User Issues
Posted
by john doe
on Stack Overflow
See other posts from Stack Overflow
or by john doe
Published on 2010-04-27T19:30:31Z
Indexed on
2010/04/27
19:43 UTC
Read the original article
Hit count: 441
ASP.NET
|asp.net-membership
I am trying to implement a custom membership provider and want to change the GetUser method. The problem is that GetUser returns MembershipUser and I want to return MyMembershipUser which has two additional properties FirstName and LastName. I can create a new method in my membership provider which returns MyMembershipUser but then I think it won't make any sense.
How would I go about doing this?
© Stack Overflow or respective owner