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