From b1556a19b7ed20e917602c64c897bd11d8fa3a4f Mon Sep 17 00:00:00 2001 From: Mark Macneil Date: Wed, 19 Apr 2017 22:38:58 -0300 Subject: [PATCH] post in progress --- src/dotnetGigs/Data/ApplicationDbContext.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/dotnetGigs/Data/ApplicationDbContext.cs b/src/dotnetGigs/Data/ApplicationDbContext.cs index e69de29..9b3c44e 100644 --- a/src/dotnetGigs/Data/ApplicationDbContext.cs +++ b/src/dotnetGigs/Data/ApplicationDbContext.cs @@ -0,0 +1,20 @@ + + +using Microsoft.AspNetCore.Identity.EntityFrameworkCore; +using DotNetGigs.Models.Entities; +using Microsoft.EntityFrameworkCore; + +namespace DotNetGigs.Data +{ +public class ApplicationDbContext : IdentityDbContext +{ + public ApplicationDbContext(DbContextOptions options) + : base(options) + { + } + + public DbSet JobSeekers { get; set; } + } +} + + \ No newline at end of file