Table of Contents

Class SqliteIdentityStorage.RoleRow

Namespace
Hi.SqliteUtils
Assembly
HiNc.dll

Represents a role row in the database.

public class SqliteIdentityStorage.RoleRow
Inheritance
SqliteIdentityStorage.RoleRow
Inherited Members
Extension Methods

Properties

ConcurrencyStamp

Gets or sets the concurrency stamp.

public string ConcurrencyStamp { get; set; }

Property Value

string

Id

Gets or sets the role ID.

public string Id { get; set; }

Property Value

string

Name

Gets or sets the role name.

public string Name { get; set; }

Property Value

string

NormalizedName

Gets or sets the normalized role name.

public string NormalizedName { get; set; }

Property Value

string

Methods

ToRole<TRole>()

Converts this row to a role object.

public TRole ToRole<TRole>() where TRole : SqliteIdentityRole, new()

Returns

TRole

A new role instance.

Type Parameters

TRole

The type of role to create.