Skip to content

Instantly share code, notes, and snippets.

@komainu85
Created February 18, 2015 20:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save komainu85/ba0ee2003f85d7d9e465 to your computer and use it in GitHub Desktop.
Save komainu85/ba0ee2003f85d7d9e465 to your computer and use it in GitHub Desktop.
Get Membership User From Sitecore Account
public static class SitecoreAccountExtensions
{
public static MembershipUser GetMembershipUser(this Account account)
{
return Membership.GetUser(account.Name);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment