vote up 3 vote down star
2

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 haven't actually looked at the generated SQL in the EF Context, but I believe it's going with the usual SQL Server convention of providing no value for the autoincrementing column.

According to the site for the ADO.NET SQLite provider, EF is fully supported but I'm finding no help there. Is there a way to force EF to explicitly insert a NULL for the primary key value?

flag

I'm in the same situation. I've tried replacing long for long? in the generated code, so I could at least set the null myself, but it didn't work. The error msg was: "The changes to the database were committed successfully, but an error occurred while updating the object context. The ObjectContext might be in an inconsistent state. Inner exception message: The key-value pairs that define an EntityKey cannot be null or empty.\r\nParameter name: record". It seems theres no way to bypass this, sqlite way of handling autoincrement is kinda wierd. – Pablote Jun 3 at 2:49
I gave up on SQLite in combination with EF. There is a post about this very issue on the forums at the site for System.Data.Sqlite but there as been no movement or response for some time. I moved to SQL Compact, which presents its own issues. You can't do "server-generated keys" with EF/SQLCompact. So, for now I do standard Connection/Command-style ADO for inserts and I'm using EF for the LINQ sugar. – Dave Swersky Jun 3 at 16:55
This sucks. I guess the same 'trick' could be used in sqlite. I've tested autoincrement with CE and linq to sql and it seems to work. Haven't tried it with sqlite, not sure if it's even possible. – Pablote Jun 4 at 16:03
Here's a list of limitations with EF/CE: technet.microsoft.com/en-us/library/… – Pablote Jun 4 at 16:10
Yeah after thinking about it I could have stayed with SQLite using the same technique... oh well. – Dave Swersky Jun 4 at 18:34

2 Answers

vote up 1 vote down check

Well I've finally made this work :D. You need to set the id column as autoincrement, this way it does work with EF. Dont ask me why this isnt mentioned in the question about auto-increment in sqlite faq. This is an example:

create table Persona ( PersonaID integer primary key autoincrement, Nombre text)

Also, I didn't found a way to set this from within visual studio, I had to do it from the command line tool.

UPDATE: The following code works fine.

PruebaDBEntities data = new PruebaDBEntities();

        foreach (int num in Enumerable.Range(1, 1000))
        {
            Persona p = new Persona() { Nombre = "Persona " + num, Edad = num };

            data.AddToPersona(p);

            data.SaveChanges();

            Console.WriteLine(p.PersonaID);
        }

The PersonaID wasn't set, and after the save operation it had the value asigned by sqlite.

link|flag
I saw that in some postings, but don't you have to explicitly enter a NULL in the INSERT statement for the primary key? "INSERT INTO Persona VALUES('Pablo')" doesn't work, you have to do "INSERT INTO Persona VALUES(NULL,'Pablo')" right? – Dave Swersky Jun 4 at 22:53
I've responded on the post, so the code could get nicely formatted. – Pablote Jun 4 at 23:54
vote up 1 vote down

I've had the same problem with EF and SQLite. Try checking the second post: http://sqlite.phxsoftware.com/forums/p/1418/6162.aspx

The cause for my problem was that the autoincrement was added to the database itself, but the entity model was not properly refreshed. So after the refresh, my field looked something like this:

<Property Name="ID" Type="integer" Nullable="false" StoreGeneratedPattern="Identity" />

(StoreGeneratedPattern="Identity" was added)

Before the refresh (with the old model), I just tried setting the id property to 0, which worked as well :)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.