Show / Hide Table of Contents

Interface IEntityTagRepository

Inherited Members
IBasicRepository<EntityTag>.InsertAsync(EntityTag, bool, CancellationToken)
IBasicRepository<EntityTag>.InsertManyAsync(IEnumerable<EntityTag>, bool, CancellationToken)
IBasicRepository<EntityTag>.UpdateAsync(EntityTag, bool, CancellationToken)
IBasicRepository<EntityTag>.UpdateManyAsync(IEnumerable<EntityTag>, bool, CancellationToken)
IBasicRepository<EntityTag>.DeleteAsync(EntityTag, bool, CancellationToken)
IBasicRepository<EntityTag>.DeleteManyAsync(IEnumerable<EntityTag>, bool, CancellationToken)
IReadOnlyBasicRepository<EntityTag>.GetListAsync(bool, CancellationToken)
IReadOnlyBasicRepository<EntityTag>.GetCountAsync(CancellationToken)
IReadOnlyBasicRepository<EntityTag>.GetPagedListAsync(int, int, string, bool, CancellationToken)
IRepository.IsChangeTrackingEnabled
Namespace: Volo.CmsKit.Tags
Assembly: Volo.CmsKit.Domain.dll
Syntax
public interface IEntityTagRepository : IBasicRepository<EntityTag>, IReadOnlyBasicRepository<EntityTag>, IRepository

Methods

DeleteManyAsync(Guid[], string, CancellationToken)

Declaration
Task DeleteManyAsync(Guid[] tagIds, string entityId, CancellationToken cancellationToken = default)
Parameters
Type Name Description
Guid[] tagIds
string entityId
CancellationToken cancellationToken
Returns
Type Description
Task

FindAsync(Guid, string, Guid?, CancellationToken)

Declaration
Task<EntityTag> FindAsync(Guid tagId, string entityId, Guid? tenantId, CancellationToken cancellationToken = default)
Parameters
Type Name Description
Guid tagId
string entityId
Guid? tenantId
CancellationToken cancellationToken
Returns
Type Description
Task<EntityTag>

GetEntityIdsFilteredByTagAsync(Guid, Guid?, CancellationToken)

Declaration
Task<List<string>> GetEntityIdsFilteredByTagAsync(Guid tagId, Guid? tenantId, CancellationToken cancellationToken = default)
Parameters
Type Name Description
Guid tagId
Guid? tenantId
CancellationToken cancellationToken
Returns
Type Description
Task<List<string>>

GetEntityIdsFilteredByTagNameAsync(string, string, Guid?, CancellationToken)

Declaration
Task<List<string>> GetEntityIdsFilteredByTagNameAsync(string tagName, string entityType, Guid? tenantId = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string tagName
string entityType
Guid? tenantId
CancellationToken cancellationToken
Returns
Type Description
Task<List<string>>

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