Interface IFeatureValueRepository
Assembly: Volo.Abp.FeatureManagement.Domain.dll
Syntax
public interface IFeatureValueRepository : IBasicRepository<FeatureValue, Guid>, IBasicRepository<FeatureValue>, IReadOnlyBasicRepository<FeatureValue, Guid>, IReadOnlyBasicRepository<FeatureValue>, IRepository
Methods
FindAllAsync(String, String, String)
Declaration
Task<List<FeatureValue>> FindAllAsync(string name, string providerName, string providerKey)
Parameters
Type |
Name |
Description |
System.String |
name |
|
System.String |
providerName |
|
System.String |
providerKey |
|
Returns
FindAsync(String, String, String)
Declaration
Task<FeatureValue> FindAsync(string name, string providerName, string providerKey)
Parameters
Type |
Name |
Description |
System.String |
name |
|
System.String |
providerName |
|
System.String |
providerKey |
|
Returns
GetListAsync(String, String)
Declaration
Task<List<FeatureValue>> GetListAsync(string providerName, string providerKey)
Parameters
Type |
Name |
Description |
System.String |
providerName |
|
System.String |
providerKey |
|
Returns
Extension Methods