-
-
Notifications
You must be signed in to change notification settings - Fork 519
Closed
Description
var compiler = new SqliteCompiler();
var query = new Query("TodoList").AsInsert(new {
Name = todoList.Name
});
SqlResult result = compiler.Compile(query);
Console.WriteLine(result.Sql);I'm get INSERT INTO "TodoList" ("Name") VALUES (@p0) insted of INSERT INTO "TodoList" ("Name") VALUES ('teste'), or better INSERT INTO "TodoList" ("Name") VALUES (@Name) because i'm using dapper with SqlKata
Metadata
Metadata
Assignees
Labels
No labels