Skip to content

Commit affde59

Browse files
Migrated Data
1 parent c01556b commit affde59

File tree

6 files changed

+1181
-0
lines changed

6 files changed

+1181
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
using jQueryDatatableServerSideNetCore.Models.DatabaseModels;
2+
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
3+
using Microsoft.EntityFrameworkCore;
4+
5+
namespace jQueryDatatableServerSideNetCore.Data
6+
{
7+
public class ApplicationDbContext : IdentityDbContext
8+
{
9+
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
10+
: base(options)
11+
{
12+
}
13+
14+
public DbSet<TestRegister> TestRegisters { get; set; }
15+
}
16+
}

src/jQueryDatatableServerSideNetCore/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs

Lines changed: 277 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)