You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Id" INTEGER GENERATED BY DEFAULT AS IDENTITY NOT NULL,
However, after upgrade to 9.0.0, the same code generate:
"Id" INTEGER NOT NULL,
Is this change by purpose or does every model now need to have identity column explictly stated, ex. modelBuilder.Entity<Record>(b => { b.Property(p => p.Id).UseIdentityColumn(); }); ?