From 83c46406d7ca3ed0e1ca146dc7e946da0dba73f2 Mon Sep 17 00:00:00 2001 From: Henrik Walker Moe Date: Thu, 13 Jun 2019 20:28:42 +0200 Subject: [PATCH] Replaces ApplicationDbContext with MyKeysContext (#12810) --- .../key-storage-providers/sample/MyKeysContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/security/data-protection/implementation/key-storage-providers/sample/MyKeysContext.cs b/aspnetcore/security/data-protection/implementation/key-storage-providers/sample/MyKeysContext.cs index 359b1b6d33..2c17ec6191 100644 --- a/aspnetcore/security/data-protection/implementation/key-storage-providers/sample/MyKeysContext.cs +++ b/aspnetcore/security/data-protection/implementation/key-storage-providers/sample/MyKeysContext.cs @@ -8,7 +8,7 @@ namespace WebApp1 { // A recommended constructor overload when using EF Core // with dependency injection. - public MyKeysContext(DbContextOptions options) + public MyKeysContext(DbContextOptions options) : base(options) { } // This maps to the table that stores keys.