Asp.net – Using a custom user model with .NET 8 Identity API Endpoints
I am using the new Identity API endpoints from my ASP.NET Core API project, but I would like to use more custom properties for application user. My user class looks like this: public class ApplicationUser : IdentityUser { [StringLength(256)] public…