We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fa51f6f + 587d44f commit 6aee531Copy full SHA for 6aee531
1 file changed
QueryBuilder/Compilers/SqliteCompiler.cs
@@ -11,7 +11,7 @@ public class SqliteCompiler : Compiler
11
protected override string parameterPrefix { get; set; } = "@p";
12
protected override string OpeningIdentifier { get; set; } = "\"";
13
protected override string ClosingIdentifier { get; set; } = "\"";
14
- protected override string LastId { get; set; } = "select last_insert_rowid()";
+ protected override string LastId { get; set; } = "select last_insert_rowid() as id";
15
16
public override string CompileTrue()
17
{
0 commit comments