Table of Contents

Interface IConcurrency<TKey>

Namespace
LinqToDB.Identity
Assembly
LinqToDB.Identity.dll

Concurrency interface for IIdentityRole<TKey> and IIdentityUser<TKey>/>

public interface IConcurrency<TKey> where TKey : IEquatable<TKey>

Type Parameters

TKey

The type used for the primary key.

Properties

ConcurrencyStamp

A random value that should change whenever a role is persisted to the store

string ConcurrencyStamp { get; set; }

Property Value

string

Id

Gets or sets the primary key.

TKey Id { get; set; }

Property Value

TKey