Skip to content

Commit 821bf8a

Browse files
author
Jonathan Aichler
authored
Update update.md
Change for reported issue sqlkata/querybuilder#382
1 parent f745d18 commit 821bf8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

update.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ var query = new Query("Books").AsInsert(new {
1313
```
1414

1515
```sql
16-
INSERT INTO [Books] ([Name], [CreatedAt], [Author]) VALUES ('Toyota Kata', '2009-08-04 00:00:00', 'Mike Rother')
16+
INSERT INTO [Books] ([Title], [CreatedAt], [Author]) VALUES ('Toyota Kata', '2009-08-04 00:00:00', 'Mike Rother')
1717
```
1818

1919

@@ -77,4 +77,4 @@ var query = new Query("Posts").Where("Date", ">", DateTime.UtcNow.AddDays(-30)).
7777

7878
```sql
7979
DELETE FROM [Posts] WHERE [Date] > ?
80-
```
80+
```

0 commit comments

Comments
 (0)