Skip to content

Commit f6baf21

Browse files
committed
Authentication - Identity - .Net 8
1 parent 041adbb commit f6baf21

13 files changed

+969
-6
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
using Microsoft.EntityFrameworkCore;
2+
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
3+
4+
public class ApplicationDBContext:IdentityDbContext<ApplicationUser>
5+
{
6+
public ApplicationDBContext(DbContextOptions<ApplicationDBContext> options)
7+
: base(options)
8+
{
9+
}
10+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
using Microsoft.AspNetCore.Identity;
2+
3+
public class ApplicationUser : IdentityUser
4+
{
5+
6+
}

projects/authentication/authentication-5/Migrations/20240301175333_Init.Designer.cs

Lines changed: 267 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)