Show / Hide Table of Contents

Interface IIdentityDbContext

Inherited Members
IEfCoreDbContext.Attach<TEntity>(TEntity)
IEfCoreDbContext.Attach(object)
IEfCoreDbContext.SaveChanges()
IEfCoreDbContext.SaveChanges(bool)
IEfCoreDbContext.SaveChangesAsync(bool, CancellationToken)
IEfCoreDbContext.SaveChangesAsync(CancellationToken)
IEfCoreDbContext.SaveChangesOnDbContextAsync(bool, CancellationToken)
IEfCoreDbContext.Set<T>()
IEfCoreDbContext.Add(object)
IEfCoreDbContext.Add<TEntity>(TEntity)
IEfCoreDbContext.AddAsync(object, CancellationToken)
IEfCoreDbContext.AddAsync<TEntity>(TEntity, CancellationToken)
IEfCoreDbContext.AddRange(IEnumerable<object>)
IEfCoreDbContext.AddRange(params object[])
IEfCoreDbContext.AddRangeAsync(params object[])
IEfCoreDbContext.AddRangeAsync(IEnumerable<object>, CancellationToken)
IEfCoreDbContext.AttachRange(IEnumerable<object>)
IEfCoreDbContext.AttachRange(params object[])
IEfCoreDbContext.Entry<TEntity>(TEntity)
IEfCoreDbContext.Entry(object)
IEfCoreDbContext.Find(Type, params object[])
IEfCoreDbContext.Find<TEntity>(params object[])
IEfCoreDbContext.FindAsync(Type, object[], CancellationToken)
IEfCoreDbContext.FindAsync<TEntity>(object[], CancellationToken)
IEfCoreDbContext.FindAsync<TEntity>(params object[])
IEfCoreDbContext.FindAsync(Type, params object[])
IEfCoreDbContext.Remove<TEntity>(TEntity)
IEfCoreDbContext.Remove(object)
IEfCoreDbContext.RemoveRange(IEnumerable<object>)
IEfCoreDbContext.RemoveRange(params object[])
IEfCoreDbContext.Update<TEntity>(TEntity)
IEfCoreDbContext.Update(object)
IEfCoreDbContext.UpdateRange(params object[])
IEfCoreDbContext.UpdateRange(IEnumerable<object>)
IEfCoreDbContext.Database
IEfCoreDbContext.ChangeTracker
IDisposable.Dispose()
IAsyncDisposable.DisposeAsync()
Namespace: Volo.Abp.Identity.EntityFrameworkCore
Assembly: Volo.Abp.Identity.EntityFrameworkCore.dll
Syntax
[ConnectionStringName("AbpIdentity")]
public interface IIdentityDbContext : IEfCoreDbContext, IDisposable, IInfrastructure<IServiceProvider>, IDbContextDependencies, IDbSetCache, IDbContextPoolable, IResettableService, IAsyncDisposable

Properties

ClaimTypes

Declaration
DbSet<IdentityClaimType> ClaimTypes { get; }
Property Value
Type Description
DbSet<IdentityClaimType>

LinkUsers

Declaration
DbSet<IdentityLinkUser> LinkUsers { get; }
Property Value
Type Description
DbSet<IdentityLinkUser>

OrganizationUnits

Declaration
DbSet<OrganizationUnit> OrganizationUnits { get; }
Property Value
Type Description
DbSet<OrganizationUnit>

Roles

Declaration
DbSet<IdentityRole> Roles { get; }
Property Value
Type Description
DbSet<IdentityRole>

SecurityLogs

Declaration
DbSet<IdentitySecurityLog> SecurityLogs { get; }
Property Value
Type Description
DbSet<IdentitySecurityLog>

Sessions

Declaration
DbSet<IdentitySession> Sessions { get; }
Property Value
Type Description
DbSet<IdentitySession>

UserDelegations

Declaration
DbSet<IdentityUserDelegation> UserDelegations { get; }
Property Value
Type Description
DbSet<IdentityUserDelegation>

Users

Declaration
DbSet<IdentityUser> Users { get; }
Property Value
Type Description
DbSet<IdentityUser>

Extension Methods

AbpObjectExtensions.As<T>(object)
AbpObjectExtensions.To<T>(object)
LockExtensions.Locking(object, Action)
LockExtensions.Locking<TResult>(object, Func<TResult>)
In this article
Back to top Powered by ABP.IO Platform