How do I create an Auto increment identity column in Entity Framework Core?
Obviously I can do it using fluent API for EF6 for example.
With latest bits EF Core 1.0 and up you should use
builder.Entity().Property(nameof(ApplicationUser.AccountNo)) .UseSqlServerIdentityColumn()