1. 02 5月, 2015 1 次提交
  2. 30 4月, 2015 2 次提交
  3. 15 4月, 2015 1 次提交
  4. 13 4月, 2015 2 次提交
  5. 11 4月, 2015 3 次提交
  6. 10 4月, 2015 2 次提交
  7. 08 4月, 2015 3 次提交
  8. 03 4月, 2015 3 次提交
  9. 30 3月, 2015 1 次提交
  10. 23 3月, 2015 1 次提交
  11. 18 3月, 2015 7 次提交
  12. 16 3月, 2015 1 次提交
  13. 27 1月, 2015 1 次提交
  14. 14 1月, 2015 1 次提交
    • M
      QueryAsync<Dynamic> should return an IEnumerable<DapperRow> · 5b1ed92b
      Michael Burbea 提交于
      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
  15. 16 12月, 2014 3 次提交
  16. 11 12月, 2014 1 次提交
    • T
      Tiny typo · 0fe24ba3
      Tim Whitbeck 提交于
      Fix capitalization of commandType (for copy/paste junkies)
      0fe24ba3
  17. 04 12月, 2014 3 次提交
  18. 16 11月, 2014 2 次提交
  19. 30 10月, 2014 2 次提交