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 e47d819 + d2877e0 commit 942f91dCopy full SHA for 942f91d
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").AsList();
69
70
Assert.Equal(1, (int)rows[0].A);
71
Assert.Equal(2, (int)rows[0].B);
0 commit comments