18 references to Stores
Microsoft.AspNetCore.Identity.EntityFrameworkCore (2)
IdentityUserContext.cs (1)
141?.Value?.Stores;
UserOnlyStore.cs (1)
760$"When using '{nameof(IdentityDbContext)}', make sure that '{nameof(IdentityOptions)}.{nameof(IdentityOptions.Stores)}.{nameof(StoreOptions.SchemaVersion)}' " +
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (9)
CustomSchemaTest.cs (1)
29o.Stores.SchemaVersion = new Version(3, 0);
EmptySchemaTest.cs (1)
29o.Stores.SchemaVersion = new Version(11, 0);
MaxKeyLengthSchemaTest.cs (1)
27.AddIdentity<IdentityUser, IdentityRole>(o => o.Stores.MaxLengthForKeys = 128)
UserStoreEncryptPersonalDataTest.cs (3)
22options.Stores.ProtectPersonalData = true; 185options.Stores.ProtectPersonalData = protect; 282options.Stores.ProtectPersonalData = true;
VersionOneSchemaTest.cs (1)
28o.Stores.MaxLengthForKeys = 128;
VersionThreeSchemaTest.cs (1)
29o.Stores.SchemaVersion = IdentitySchemaVersions.Version3;
VersionTwoSchemaTest.cs (1)
29o.Stores.SchemaVersion = IdentitySchemaVersions.Version2;
Microsoft.AspNetCore.Identity.Test (2)
UserManagerTest.cs (2)
884services.AddIdentity<PocoUser, PocoRole>(o => o.Stores.ProtectPersonalData = true) 895services.AddIdentity<PocoUser, PocoRole>(o => o.Stores.ProtectPersonalData = true)
Microsoft.AspNetCore.Identity.UI (1)
IdentityServiceCollectionUIExtensions.cs (1)
50o.Stores.MaxLengthForKeys = 128;
Microsoft.Extensions.Identity.Core (4)
UserManager.cs (4)
122if (Options.Stores.ProtectPersonalData) 556if (user == null && Options.Stores.ProtectPersonalData) 621if (Options.Stores.ProtectPersonalData) 1311if (user == null && Options.Stores.ProtectPersonalData)