Show / Hide Table of Contents

Interface ILanguageRepository

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

Methods

AnyAsync(string, CancellationToken)

Declaration
Task<bool> AnyAsync(string cultureName, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string cultureName
CancellationToken cancellationToken
Returns
Type Description
Task<bool>

GetCountAsync(string, CancellationToken)

Declaration
Task<long> GetCountAsync(string filter, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string filter
CancellationToken cancellationToken
Returns
Type Description
Task<long>

GetListAsync(string, int, int, string, CancellationToken)

Declaration
Task<List<Language>> GetListAsync(string sorting = null, int maxResultCount = 2147483647, int skipCount = 0, string filter = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string sorting
int maxResultCount
int skipCount
string filter
CancellationToken cancellationToken
Returns
Type Description
Task<List<Language>>

GetListByIsEnabledAsync(bool, CancellationToken)

Declaration
Task<List<Language>> GetListByIsEnabledAsync(bool isEnabled, CancellationToken cancellationToken = default)
Parameters
Type Name Description
bool isEnabled
CancellationToken cancellationToken
Returns
Type Description
Task<List<Language>>

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