1 instantiation of StoreOptions
Microsoft.Extensions.Identity.Core (1)
IdentityOptions.cs (1)
65public StoreOptions Stores { get; set; } = new StoreOptions();
10 references to StoreOptions
Microsoft.AspNetCore.Identity.EntityFrameworkCore (6)
IdentityUserContext.cs (4)
137private StoreOptions? GetStoreOptions() => this.GetService<IDbContextOptions>() 195var storeOptions = GetStoreOptions(); 306var storeOptions = GetStoreOptions(); 406var storeOptions = GetStoreOptions();
UserOnlyStore.cs (1)
767$"When using '{nameof(IdentityDbContext)}', make sure that '{nameof(IdentityOptions)}.{nameof(IdentityOptions.Stores)}.{nameof(StoreOptions.SchemaVersion)}' " +
UserStore.cs (1)
911$"When using '{nameof(IdentityDbContext)}', make sure that '{nameof(IdentityOptions)}.{nameof(IdentityOptions.Stores)}.{nameof(StoreOptions.SchemaVersion)}' " +
Microsoft.Extensions.Identity.Core (4)
IdentityOptions.cs (3)
60/// Gets or sets the <see cref="StoreOptions"/> for the identity system. 63/// The <see cref="StoreOptions"/> for the identity system. 65public 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.