-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SQLite: add a value generator for Int32 #300
Comments
The GUID generator will work; they get mapped to BLOB values by Microsoft.Data.SQLite. #361 adds a value generator for columns that map to INTEGER PRIMARY KEY columns (including AUTOINCREMENT ones). By default, this means The remaining work for this issue, I would consider to be a duplicate of #302. |
Discussed in triage and decided that we should just make Int32 properties work for identity (since this is a very common pattern in domain classes). We'll handle this by using a long column in the database - similar to what we do to make GUIDs work. |
Per our decision, this may now depend on #242 |
Resolved by #2006 |
Trying out the SQLite provider leaving key generation to EF fails as the only built-in generator is for Guids (not supported under SQLite).
The text was updated successfully, but these errors were encountered: