IQueryableUserStore<TUser> Interfaccia
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Fornisce un'astrazione per l'esecuzione di query sugli utenti in un archivio utenti.
generic <typename TUser>
where TUser : classpublic interface class IQueryableUserStore : IDisposable, Microsoft::AspNetCore::Identity::IUserStore<TUser>
public interface IQueryableUserStore<TUser> : IDisposable, Microsoft.AspNetCore.Identity.IUserStore<TUser> where TUser : class
type IQueryableUserStore<'User (requires 'User : null)> = interface
interface IUserStore<'User (requires 'User : null)>
interface IDisposable
Public Interface IQueryableUserStore(Of TUser)
Implements IDisposable, IUserStore(Of TUser)
Parametri di tipo
- TUser
Tipo che incapsula un utente.
- Derivato
- Implementazioni
Proprietà
Users |
Restituisce una IQueryable<T> raccolta di utenti. |
Metodi
CreateAsync(TUser, CancellationToken) |
Crea l'oggetto specificato |
DeleteAsync(TUser, CancellationToken) |
Elimina l'oggetto specificato |
FindByIdAsync(String, CancellationToken) |
Trova e restituisce un utente, se presente, che ha l'oggetto specificato |
FindByNameAsync(String, CancellationToken) |
Trova e restituisce un utente, se presente, con il nome utente normalizzato specificato. (Ereditato da IUserStore<TUser>) |
GetNormalizedUserNameAsync(TUser, CancellationToken) |
Ottiene il nome utente normalizzato per l'oggetto specificato |
GetUserIdAsync(TUser, CancellationToken) |
Ottiene l'identificatore utente per l'oggetto specificato |
GetUserNameAsync(TUser, CancellationToken) |
Ottiene il nome utente per l'oggetto specificato |
SetNormalizedUserNameAsync(TUser, String, CancellationToken) |
Imposta il nome normalizzato specificato per l'oggetto specificato |
SetUserNameAsync(TUser, String, CancellationToken) |
Imposta l'oggetto specificato |
UpdateAsync(TUser, CancellationToken) |
Aggiornamenti l'oggetto specificato |