Interface ILanguageRepository
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
Returns
GetCountAsync(string, CancellationToken)
Declaration
Task<long> GetCountAsync(string filter, CancellationToken cancellationToken = default)
Parameters
Returns
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
Returns
GetListByIsEnabledAsync(bool, CancellationToken)
Declaration
Task<List<Language>> GetListByIsEnabledAsync(bool isEnabled, CancellationToken cancellationToken = default)
Parameters
Returns
Extension Methods