❔ 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
LocalIdpublic class ApplicationUser : IdentityUser
{
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
[Key]
public int LocalId { get; set; }
public string? FirstName { get; set; }
public string? LastName { get; set; }
}