Get asp.net user by id with full details, including profile and membership data.

Namespace: MonoSoftware.MonoX.Repositories
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public virtual AspnetUsersEntity GetUserWithProfile(
	string username
)
Visual Basic
Public Overridable Function GetUserWithProfile ( 
	username As String
) As AspnetUsersEntity
Visual C++
public:
virtual AspnetUsersEntity^ GetUserWithProfile(
	String^ username
)
F#
abstract GetUserWithProfile : 
        username : string -> AspnetUsersEntity 
override GetUserWithProfile : 
        username : string -> AspnetUsersEntity 

Parameters

username
Type: System..::..String
Username

Return Value

Type: AspnetUsersEntity
Aspnet user entity, or null if not found

Implements

IUserRepository..::..GetUserWithProfile(String)

See Also