From 8d60b3bb0b5a3427fb386771d6fa8c00f61058f4 Mon Sep 17 00:00:00 2001 From: HombreLaser Date: Mon, 14 Nov 2022 19:17:53 -0600 Subject: AƱadida configuraciĆ³n de Identity MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Models/ApplicationDbContext.cs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Models/ApplicationDbContext.cs (limited to 'Models/ApplicationDbContext.cs') diff --git a/Models/ApplicationDbContext.cs b/Models/ApplicationDbContext.cs new file mode 100644 index 0000000..f55a05e --- /dev/null +++ b/Models/ApplicationDbContext.cs @@ -0,0 +1,8 @@ +using Microsoft.AspNetCore.Identity.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; + +namespace IdentityAPI.Models { + public class ApplicationDbContext : IdentityDbContext { + public ApplicationDbContext(DbContextOptions options) : base(options) {} + } +} -- cgit v1.2.3