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 cea7a01 commit d2877e0Copy full SHA for d2877e0
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").ToList();
+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