Table of Contents

Class IdentityUser

Namespace
LinqToDB.Identity
Assembly
LinqToDB.Identity.dll

The default implementation of IdentityUser<TKey> which uses a string as a primary key.

public class IdentityUser : IdentityUser<string>, IIdentityUser<string>, IConcurrency<string>
Inheritance
IdentityUser
Implements
Inherited Members

Constructors

IdentityUser()

Initializes a new instance of IdentityUser.

public IdentityUser()

Remarks

The Id property is initialized to from a new GUID string value.

IdentityUser(string)

Initializes a new instance of IdentityUser.

public IdentityUser(string userName)

Parameters

userName string

The user name.

Remarks

The Id property is initialized to from a new GUID string value.