Class MongoIdentityClaimTypeRepository
Inheritance
System.Object
MongoIdentityClaimTypeRepository
Assembly: Volo.Abp.Identity.MongoDB.dll
Syntax
public class MongoIdentityClaimTypeRepository : MongoDbRepository<IAbpIdentityMongoDbContext, IdentityClaimType, Guid>, IIdentityClaimTypeRepository, IBasicRepository<IdentityClaimType, Guid>
Constructors
MongoIdentityClaimTypeRepository(IMongoDbContextProvider<IAbpIdentityMongoDbContext>)
Declaration
public MongoIdentityClaimTypeRepository(IMongoDbContextProvider<IAbpIdentityMongoDbContext> dbContextProvider)
Parameters
Methods
AnyAsync(String, Nullable<Guid>, CancellationToken)
Declaration
public virtual Task<bool> AnyAsync(string name, Guid? ignoredId = null, CancellationToken cancellationToken = null)
Parameters
Type |
Name |
Description |
System.String |
name |
|
System.Nullable<Guid> |
ignoredId |
|
CancellationToken |
cancellationToken |
|
Returns
Type |
Description |
Task<System.Boolean> |
|
GetCountAsync(String, CancellationToken)
Declaration
public Task<long> GetCountAsync(string filter = null, CancellationToken cancellationToken = null)
Parameters
Type |
Name |
Description |
System.String |
filter |
|
CancellationToken |
cancellationToken |
|
Returns
Type |
Description |
Task<System.Int64> |
|
GetListAsync(String, Int32, Int32, String, CancellationToken)
Declaration
public virtual Task<List<IdentityClaimType>> GetListAsync(string sorting, int maxResultCount, int skipCount, string filter, CancellationToken cancellationToken = null)
Parameters
Type |
Name |
Description |
System.String |
sorting |
|
System.Int32 |
maxResultCount |
|
System.Int32 |
skipCount |
|
System.String |
filter |
|
CancellationToken |
cancellationToken |
|
Returns
Implements
Extension Methods