Question

In ASP.NET MVC 3 with Default Membership Provider I would create relationships with

public virtual Guid UserGuid { get; set; }
public virtual MembershipUser User
{
    get
    {
        return Membership.GetUser(UserGuid);
    }
}

In ASP.NET MVC 4 with Simple Membership Provider what is the equivalent method of Membership.GetUser() and class MembershipUser that are compatible with SMP?

Was it helpful?

Solution

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top