1. 02 May, 2020 17 commits
  2. 01 May, 2020 8 commits
  3. 28 Apr, 2020 1 commit
  4. 06 Apr, 2020 1 commit
  5. 05 Apr, 2020 1 commit
  6. 26 Mar, 2020 1 commit
  7. 24 Dec, 2019 1 commit
  8. 03 Nov, 2019 1 commit
  9. 25 Oct, 2019 1 commit
    • Sébastien Ros's avatar
      Use InvariantCulture in FlexibleConvert (#1363) · a18dc63c
      Sébastien Ros authored
      In Sqlite, DateTime is stored as String, and custom serializers ultimately use Convert.ChangeType to do the conversion. The generated code however doesn't set the Invariant culture, and the conversion can fail if the current culture doesn't match the standard DateTime serialization format from Sqlite.
      a18dc63c
  10. 27 Sep, 2019 5 commits
  11. 26 Sep, 2019 1 commit
    • Nick Craver's avatar
      Tooling and project updates (#1333) · 1481c4d3
      Nick Craver authored
      This is a branch cleaning up old `#if` clauses, `.csproj` bits, Linux build compatibility, and a few other tid-bits (broken out by commit).
      
      In general: we're on 3.0 tooling and all previous cruft has been removed.
      1481c4d3
  12. 22 Sep, 2019 2 commits
    • Damir Ainullin's avatar
      Replaced Connection with GetClosedConnection in some unit tests… (#1337) · 7cac3824
      Damir Ainullin authored
      …cording to their names.
      7cac3824
    • Jesper Meyer's avatar
      Updated Hand Coded benchmarks (#1206) · 3b0cd9a9
      Jesper Meyer authored
      Hand coded version did not operate under the same circumstances as others.
      
      - Add CommandBehavior.SingleResult and CommandBehavior.SingleRow. All other framworks does this under the hood.
      - Run SqlCommand.Prepare() (perhaps it should be benchmarked as "Compiled"?)
      - Use GetNullableValue because it's easier to read and slightly faster
      - _table.Rows was incrementally added, which made the benchmark run slower the longer it executed. Added _table.Rows.Clear() to prevent the growth.
      - Changed select to use * like other benchmarks
      3b0cd9a9