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
From the book, "The Definitive Guide to SQLite" I read the following under primary key constraints:
"In reality, however, this column will simply be an alias for ROWID. They will all refer to the same value."
I believe that is the reason for needing to set AUTOINCREMENT in the column definition.