Show / Hide Table of Contents

Interface IIdentityLinkUserRepository

Inherited Members
IBasicRepository<IdentityLinkUser, Guid>.DeleteAsync(Guid, bool, CancellationToken)
IBasicRepository<IdentityLinkUser, Guid>.DeleteManyAsync(IEnumerable<Guid>, bool, CancellationToken)
IBasicRepository<IdentityLinkUser>.InsertAsync(IdentityLinkUser, bool, CancellationToken)
IBasicRepository<IdentityLinkUser>.InsertManyAsync(IEnumerable<IdentityLinkUser>, bool, CancellationToken)
IBasicRepository<IdentityLinkUser>.UpdateAsync(IdentityLinkUser, bool, CancellationToken)
IBasicRepository<IdentityLinkUser>.UpdateManyAsync(IEnumerable<IdentityLinkUser>, bool, CancellationToken)
IBasicRepository<IdentityLinkUser>.DeleteAsync(IdentityLinkUser, bool, CancellationToken)
IBasicRepository<IdentityLinkUser>.DeleteManyAsync(IEnumerable<IdentityLinkUser>, bool, CancellationToken)
IReadOnlyBasicRepository<IdentityLinkUser, Guid>.GetAsync(Guid, bool, CancellationToken)
IReadOnlyBasicRepository<IdentityLinkUser, Guid>.FindAsync(Guid, bool, CancellationToken)
IReadOnlyBasicRepository<IdentityLinkUser>.GetListAsync(bool, CancellationToken)
IReadOnlyBasicRepository<IdentityLinkUser>.GetCountAsync(CancellationToken)
IReadOnlyBasicRepository<IdentityLinkUser>.GetPagedListAsync(int, int, string, bool, CancellationToken)
IRepository.IsChangeTrackingEnabled
Namespace: Volo.Abp.Identity
Assembly: Volo.Abp.Identity.Domain.dll
Syntax
public interface IIdentityLinkUserRepository : IBasicRepository<IdentityLinkUser, Guid>, IBasicRepository<IdentityLinkUser>, IReadOnlyBasicRepository<IdentityLinkUser, Guid>, IReadOnlyBasicRepository<IdentityLinkUser>, IRepository

Methods

DeleteAsync(IdentityLinkUserInfo, CancellationToken)

Declaration
Task DeleteAsync(IdentityLinkUserInfo linkUserInfo, CancellationToken cancellationToken = default)
Parameters
Type Name Description
IdentityLinkUserInfo linkUserInfo
CancellationToken cancellationToken
Returns
Type Description
Task

FindAsync(IdentityLinkUserInfo, IdentityLinkUserInfo, CancellationToken)

Declaration
Task<IdentityLinkUser> FindAsync(IdentityLinkUserInfo sourceLinkUserInfo, IdentityLinkUserInfo targetLinkUserInfo, CancellationToken cancellationToken = default)
Parameters
Type Name Description
IdentityLinkUserInfo sourceLinkUserInfo
IdentityLinkUserInfo targetLinkUserInfo
CancellationToken cancellationToken
Returns
Type Description
Task<IdentityLinkUser>

GetListAsync(IdentityLinkUserInfo, List<IdentityLinkUserInfo>, CancellationToken)

Declaration
Task<List<IdentityLinkUser>> GetListAsync(IdentityLinkUserInfo linkUserInfo, List<IdentityLinkUserInfo> excludes = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
IdentityLinkUserInfo linkUserInfo
List<IdentityLinkUserInfo> excludes
CancellationToken cancellationToken
Returns
Type Description
Task<List<IdentityLinkUser>>

Extension Methods

AbpObjectExtensions.As<T>(object)
AbpObjectExtensions.To<T>(object)
LockExtensions.Locking(object, Action)
LockExtensions.Locking<TResult>(object, Func<TResult>)
AbpObjectExtensions.If<T>(T, bool, Action<T>)
AbpObjectExtensions.If<T>(T, bool, Func<T, T>)
AbpObjectExtensions.IsIn<T>(T, IEnumerable<T>)
AbpObjectExtensions.IsIn<T>(T, params T[])
AbpQueryableExtensions.OrderByIf<T, TQueryable>(TQueryable, bool, string)
AbpQueryableExtensions.PageBy<T, TQueryable>(TQueryable, int, int)
AbpQueryableExtensions.WhereIf<T, TQueryable>(TQueryable, bool, Expression<Func<T, bool>>)
AbpQueryableExtensions.WhereIf<T, TQueryable>(TQueryable, bool, Expression<Func<T, int, bool>>)
AbpOpenIddictQueryableExtensions.SkipIf<T, TQueryable>(TQueryable, bool, int?)
AbpOpenIddictQueryableExtensions.TakeIf<T, TQueryable>(TQueryable, bool, int?)
LockExtensions.Locking<T>(T, Action<T>)
LockExtensions.Locking<T, TResult>(T, Func<T, TResult>)
In this article
Back to top Powered by ABP.IO Platform