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 e723cee commit cea7a01Copy full SHA for cea7a01
Readme.md
@@ -65,7 +65,7 @@ This method will execute SQL and return a dynamic list.
65
Example usage:
66
67
```csharp
68
-var rows = connection.Query("select 1 A, 2 B union all select 3, 4");
+var rows = connection.Query("select 1 A, 2 B union all select 3, 4").ToList();
69
70
Assert.Equal(1, (int)rows[0].A);
71
Assert.Equal(2, (int)rows[0].B);
0 commit comments