1 instantiation of DataProtectionKey
Microsoft.AspNetCore.DataProtection.EntityFrameworkCore (1)
EntityFrameworkCoreXmlRepository.cs (1)
71var newKey = new DataProtectionKey()
10 references to DataProtectionKey
EntityFrameworkCoreSample (1)
Program.cs (1)
47public DbSet<DataProtectionKey> DataProtectionKeys { get; set; }
Microsoft.AspNetCore.DataProtection.EntityFrameworkCore (9)
DataProtectionKey.cs (3)
12/// The entity identifier of the <see cref="DataProtectionKey"/>. 17/// The friendly name of the <see cref="DataProtectionKey"/>. 22/// The XML representation of the <see cref="DataProtectionKey"/>.
EntityFrameworkCoreXmlRepository.cs (3)
31[DynamicDependency(DynamicallyAccessedMemberTypes.PublicProperties, typeof(DataProtectionKey))] 52foreach (var key in context.DataProtectionKeys.AsNoTracking()) 71var newKey = new DataProtectionKey()
IDataProtectionKeyContext.cs (3)
9/// Interface used to store instances of <see cref="DataProtectionKey"/> in a <see cref="DbContext"/> 14/// A collection of <see cref="DataProtectionKey"/> 16DbSet<DataProtectionKey> DataProtectionKeys { get; }