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
Id
Gets or sets the role ID.
public string Id { get; set; }
Property Value
Name
Gets or sets the role name.
public string Name { get; set; }
Property Value
NormalizedName
Gets or sets the normalized role name.
public string NormalizedName { get; set; }
Property Value
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
TRoleThe type of role to create.