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