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.
1 parent 4484307 commit 091386bCopy full SHA for 091386b
MyApp/_pages/releases/v8_09.md
@@ -470,9 +470,9 @@ The `DateFormat` accepts [SQLite strftime() function](https://www.w3resource.com
470
time modifiers in its format string whilst the `Char` accepts a character code, e.g:
471
472
```csharp
473
-var q = db.From<CompletedJob>();
474
-var createdDate = q.Column<CompletedJob>(c => c.CreatedDate);
475
-var months = db.SqlColumn<string>(q
+var q = db.From<MyTable>();
+var createdDate = q.Column<MyTable>(c => c.CreatedDate);
+var months = db.SqlList<(string month, string log)>(q
476
.Select(x => new {
477
Month = q.sql.DateFormat(createdDate, "%Y-%m"),
478
Log = q.sql.Concat(new[]{ "'Prefix'", q.sql.Char(10), createdDate })
0 commit comments