@ -84,7 +84,7 @@ class MyCustomUser : IdentityUser { }
class ApplicationDbContext : IdentityDbContext<MyCustomUser>
{
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options) : base(options) { }
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options) : base(options) { }
}
```
@ -129,7 +129,7 @@ See [here](https://gist.github.com/captainsafia/7c54e92d12df695ff0908e989fb8531
## Conclusion
In this article, I showed the Identity APIs introduced with ASP.NET 8, why we need them and how we can add them to our application, and finally I explained how to define a custom authorization policy with fewer lines of code.
In this article, I've shown you the Identity APIs introduced with ASP.NET 8, why we need them, and how we can add them to our application, and finally I explained how to define a custom authorization policy with fewer lines of code.