1 instantiation of StoreOptions
Microsoft.Extensions.Identity.Core (1)
IdentityOptions.cs (1)
73public StoreOptions Stores { get; set; } = new StoreOptions();
9 references to StoreOptions
Microsoft.AspNetCore.Identity.EntityFrameworkCore (5)
IdentityUserContext.cs (4)
137private StoreOptions? GetStoreOptions() => this.GetService<IDbContextOptions>() 195var storeOptions = GetStoreOptions(); 306var storeOptions = GetStoreOptions(); 406var storeOptions = GetStoreOptions();
UserOnlyStore.cs (1)
760$"When using '{nameof(IdentityDbContext)}', make sure that '{nameof(IdentityOptions)}.{nameof(IdentityOptions.Stores)}.{nameof(StoreOptions.SchemaVersion)}' " +
Microsoft.Extensions.Identity.Core (4)
IdentityOptions.cs (3)
68/// Gets or sets the <see cref="StoreOptions"/> for the identity system. 71/// The <see cref="StoreOptions"/> for the identity system. 73public StoreOptions Stores { get; set; } = new StoreOptions();
IProtectedUserStore.cs (1)
7/// Marker interface used to signal that the store supports the <see cref="StoreOptions.ProtectPersonalData"/> flag.