This will defeat the purpose of the Membership classes. Do something similar if you need to access other properties:
var user = Membership.GetUser(userName, true) as MyMembershipUser;
Indeed, you should have a separate Profile class that handles things that MembershipUser does not provide.
var profile = Profile.GetProfile(Membership.GetUser(userName, true));
source share