6 implementations of FindByIdAsync
Microsoft.AspNetCore.Identity.EntityFrameworkCore (1)
RoleStore.cs (1)
266public virtual Task<TRole?> FindByIdAsync(string id, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.AspNetCore.Identity.InMemory.Test (1)
InMemoryStore.cs (1)
110Task<TRole> IRoleStore<TRole>.FindByIdAsync(string roleId, CancellationToken cancellationToken)
Microsoft.AspNetCore.Identity.Test (3)
IdentityBuilderTest.cs (1)
383Task<PocoRole> IRoleStore<PocoRole>.FindByIdAsync(string roleId, CancellationToken cancellationToken)
NoopRoleStore.cs (1)
28public Task<PocoRole> FindByIdAsync(string roleId, CancellationToken cancellationToken = default(CancellationToken))
RoleManagerTest.cs (1)
183public Task<PocoRole> FindByIdAsync(string roleId, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.Extensions.Identity.Stores (1)
RoleStoreBase.cs (1)
153public abstract Task<TRole?> FindByIdAsync(string id, CancellationToken cancellationToken = default(CancellationToken));
1 reference to FindByIdAsync
Microsoft.Extensions.Identity.Core (1)
RoleManager.cs (1)
249return Store.FindByIdAsync(roleId, CancellationToken);