1. 18 Mar, 2015 4 commits
  2. 16 Mar, 2015 1 commit
  3. 27 Jan, 2015 1 commit
  4. 14 Jan, 2015 1 commit
    • Michael Burbea's avatar
      QueryAsync<Dynamic> should return an IEnumerable<DapperRow> · 5b1ed92b
      Michael Burbea authored
      In `QueryAsync<Dynamic>` you will get back an `IEnumerable<object>` requiring you to use `.Cast<IDictionary<String,Object>>()` to get the desired behavior.
      However, `Query` returns an `IEnumerable<DapperRow>` so you can use a simple cast or as to  `IEnumerable<IDictionary<string,object>>`
      
      I propose this change to allow this code to just work::
      ```csharp
      var rows = await QueryAsync(cnn, sql) as IEnumerable<IDictionary<string,object>>;
      ```
      5b1ed92b
  5. 16 Dec, 2014 3 commits
  6. 16 Nov, 2014 2 commits
  7. 30 Oct, 2014 3 commits
  8. 28 Oct, 2014 1 commit
  9. 22 Oct, 2014 2 commits
  10. 14 Oct, 2014 4 commits
  11. 09 Oct, 2014 1 commit
  12. 29 Sep, 2014 4 commits
  13. 26 Sep, 2014 1 commit
  14. 23 Sep, 2014 3 commits
  15. 22 Sep, 2014 5 commits
  16. 17 Sep, 2014 1 commit
  17. 15 Sep, 2014 3 commits