I\'m having a problem with primary keys in Entity Framework when using SQLite. SQLite wants an explicit NULL in the VALUES list on an autoincrementing primary key column. I ha
It seems EF provider for SQLite does not pick up the column as identity (autoincrement).
For database first, right click the column in EDMX designer and set the StoreGeneratedPattern to Identity.
StoreGeneratedPattern
Identity