I created an entity ApplicationUser
and successfully extended it to IdentityUser
and migrations created it in the database.
But when I go to the register endpoint, it does not show my custom fields to be registered:
Entity ApplicationUser
:
public class ApplicationUser : IdentityUser
{
public string? FirstName { get; set; }
public string? LastName { get; set; }
public int FavoriteTeam { get; set; }
public string? PhotoPath { get; set; }
public string? FirstLast { get; set; }
}
DbContext
:
public class ContextBase : IdentityDbContext<ApplicationUser>
{
public ContextBase(DbContextOptions<ContextBase> options) : base(options)
{
}
}
Program
builder.Services.AddIdentityApiEndpoints<ApplicationUser>()
.AddEntityFrameworkStores<ContextBase>();
-----
app.MapIdentityApi<ApplicationUser>();
There can be possible reason if the API endpoint that handles registration is not configured to accept the additional fields of your
ApplicationUser
. could you try this below code:Update the registration endpoint