MarrDataMapper 3.47.0
dotnet add package MarrDataMapper --version 3.47.0
NuGet\Install-Package MarrDataMapper -Version 3.47.0
<PackageReference Include="MarrDataMapper" Version="3.47.0" />
<PackageVersion Include="MarrDataMapper" Version="3.47.0" />
<PackageReference Include="MarrDataMapper" />
paket add MarrDataMapper --version 3.47.0
#r "nuget: MarrDataMapper, 3.47.0"
#:package MarrDataMapper@3.47.0
#addin nuget:?package=MarrDataMapper&version=3.47.0
#tool nuget:?package=MarrDataMapper&version=3.47.0
Marr DataMapper is a Linq enabled Micro-ORM that allows you to project views into complex object graphs. Contributors: Rick Schott, vitidev, Keivan Beigi, Mark McDowall
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net is compatible. |
This package has no dependencies.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 3.47.0 | 159 | 4/19/2015 |
| 3.46.0 | 85 | 4/19/2015 |
| 3.45.0 | 82 | 4/19/2015 |
| 3.44.0 | 91 | 4/2/2015 |
| 3.43.0 | 101 | 3/22/2015 |
| 3.42.0 | 97 | 3/6/2015 |
| 3.41.0 | 72 | 3/4/2015 |
| 3.40.0 | 93 | 3/3/2015 |
| 3.39.0 | 91 | 3/2/2015 |
| 3.38.0 | 106 | 2/10/2015 |
| 3.37.0 | 85 | 2/9/2015 |
| 3.36.0 | 88 | 2/7/2015 |
| 3.35.0 | 87 | 2/7/2015 |
| 3.34.0 | 103 | 1/29/2015 |
| 3.33.0 | 77 | 1/26/2015 |
| 3.32.0 | 89 | 1/25/2015 |
| 3.31.0 | 97 | 1/25/2015 |
| 3.30.0 | 90 | 1/25/2015 |
| 3.22.0 | 94 | 1/20/2015 |
| 3.20.0 | 166 | 10/12/2013 |
v3.47
- Fixed exception that occurred when using EagerLoadOne or EagerLoadMany relationship mapping functions within the ForEachEntity mapping.
- Renamed EagerLoadOne and EagerLoadMany FK arguments to fkOnParent and fkOnChild respectively.
v3.46
- Added a new method, "BuildColumnNames", to the QueryBuilder<T> class that can be used to create column names when using the Where overload that takes a string (it will append the appropriate table alias used by the QueryBuilder).
- Fixed a bug with the recently added EagerLoadOn relationship mapping method that caused an error when eager loading a relationship that also had a child with a Join relationship.
v3.45
Added new methods to RelationshipBuilder to provide more concise mapping alternative to "EagerLoad(...)" for typical PK/FK relationships: EagerLoadOne, EagerLoadMany and EagerLoadFK.
Examples:
- EagerLoadOne(child => child.ParentID)
- EagerLoadMany(parent => parent.ID)
- EagerLoadFK("OrderID")