Releases: guanghuang/DapperRelMapper
Releases · guanghuang/DapperRelMapper
v1.2.4
v1.2.3
Release Notes
- Add
DistinctChildren
method to distinct the children of the parent fromDapper
query
v1.2.2
Release Notes
- Add child entity many to one relationship mapping, not need to use
callbackAfterMapRow
to do the mapping
v1.2.1
Release Notes
- Add
callbackAfterMapRow
parameter to theSqlMultipleQuery
to config parent and child callback after mapping
v1.2.0
Release Notes
- Add
SqlMultipleQuery
mappers which could query multiple tables at same time and map them to the parent and child entities - Add
SplitOnBuilder
to generate thesplitOn
parameter - Add xunit test project
v1.1.5
Release Notes
- Add
SqlBuilder
from SqlBuilder project README.md file. No code change.
v1.1.4
Release Notes
- Update
SplitOn
with return type of the expression isobject
, remove the boxing/unboxing unnecessarySplitOn
methods for primitive type
v1.1.3
Release Notes
- Fix
SplitOn
on primitive type boxing/unboxing issue
v1.1.2
Release Notes
- Add
repeat
parameter to theSplitOn
method to specify the number of times the field should be repeated in thesplitOn
parameter, also addSplitOn
method withstring
parameter if the field name is different from the property name.