1. 03 Apr, 2015 2 commits
  2. 30 Mar, 2015 1 commit
  3. 23 Mar, 2015 1 commit
  4. 18 Mar, 2015 7 commits
  5. 16 Mar, 2015 1 commit
  6. 27 Jan, 2015 1 commit
  7. 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
  8. 16 Dec, 2014 3 commits
  9. 10 Dec, 2014 1 commit
    • Tim Whitbeck's avatar
      Tiny typo · 0fe24ba3
      Tim Whitbeck authored
      Fix capitalization of commandType (for copy/paste junkies)
      0fe24ba3
  10. 04 Dec, 2014 3 commits
  11. 16 Nov, 2014 2 commits
  12. 30 Oct, 2014 3 commits
  13. 28 Oct, 2014 1 commit
  14. 22 Oct, 2014 2 commits
  15. 14 Oct, 2014 4 commits
  16. 09 Oct, 2014 1 commit
  17. 29 Sep, 2014 4 commits
  18. 26 Sep, 2014 1 commit
  19. 23 Sep, 2014 1 commit