C#C
C#4y ago
Eple

❔ How to make property auto-increment?

I have set the following attributes on LocalId property, but still it does not have auto-increment enabled in SQLite table
public class ApplicationUser : IdentityUser
{
    [DatabaseGenerated(DatabaseGeneratedOption.Identity)]
    [Key]
    public int LocalId { get; set; }
    public string? FirstName { get; set; }
    public string? LastName { get; set; }

}
image.png
Was this page helpful?