Skip to content

Releases: henkmollema/Dommel

v3.3.4

15 Nov 12:43
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.3.3...v3.3.4

v3.3.3

23 Aug 13:31
Compare
Choose a tag to compare

v3.3.2

23 Aug 12:28
Compare
Choose a tag to compare
  • Only enforce single key property in multi-mapping when it's actually used in the query (504e6b6)

Full Changelog: v3.3.1...v3.3.2

v3.3.1

04 Apr 11:02
Compare
Choose a tag to compare

What's Changed

  • Add parentheses when there are multiple where statements in #303
  • Update Dapper to v2.1.35

Full Changelog: v3.3.0...v3.3.1

v3.3.0

18 Jan 15:35
Compare
Choose a tag to compare

What's Changed

  • Add parentheses to expressions with and/or combination(s) in #298
  • Use limit instead of page clause for FirstOrDefault in 3570be7
  • Resolve property from the type used in the expression in 374c8fe (fixes #282)

Full Changelog: v3.2.1...v3.3.0

v3.2.1

17 Jan 16:48
Compare
Choose a tag to compare

What's Changed

  • Limit query to single record in case of FirstOrDefault in 4e1714a
  • Update packages and add .NET 7 and 8 targets in 5f4e06e
  • Only include System.ComponentModel.Annotations on .NET Standard 2.0 TFM in 61246de
  • Fix MySQL and MS SQL in AppVeyor in #297

Available on NuGet.

Full Changelog: v3.2.0...v3.2.1

v3.2.0

15 Nov 09:25
Compare
Choose a tag to compare
  • Update Dapper to latest version
  • Update test projects to .NET 8

v3.1.0

07 Aug 12:57
Compare
Choose a tag to compare

v3.0.0

19 Aug 12:10
Compare
Choose a tag to compare

Change te way like expressions work: bf98b3b.

v2.4.0

03 Dec 08:16
Compare
Choose a tag to compare
  • Implement ToString() in SQL expressions: #264 (thanks @hasancemcerit!)
  • Log From-queries
  • Include table name in where clauses for unambiguity
  • Add multi-map overloads for Select and FirstOrDefault methods. E.g.
    var products = con.Select<Product, Category, ProductOption, Product>(x => x.Name.StartsWith("Bike"));