MarrDataMapper 3.47.0

dotnet add package MarrDataMapper --version 3.47.0                
NuGet\Install-Package MarrDataMapper -Version 3.47.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MarrDataMapper" Version="3.47.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MarrDataMapper --version 3.47.0                
#r "nuget: MarrDataMapper, 3.47.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install MarrDataMapper as a Cake Addin
#addin nuget:?package=MarrDataMapper&version=3.47.0

// Install MarrDataMapper as a Cake Tool
#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 Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.47.0 36 4/19/2015
3.46.0 16 4/19/2015
3.45.0 17 4/19/2015
3.44.0 34 4/2/2015
3.43.0 32 3/22/2015
3.42.0 42 3/6/2015
3.41.0 26 3/4/2015
3.40.0 24 3/3/2015
3.39.0 27 3/2/2015
3.38.0 38 2/10/2015
3.37.0 25 2/9/2015
3.36.0 26 2/7/2015
3.35.0 24 2/7/2015
3.34.0 44 1/29/2015
3.33.0 32 1/26/2015
3.32.0 26 1/25/2015
3.31.0 26 1/25/2015
3.30.0 27 1/25/2015
3.22.0 39 1/20/2015
3.20.0 205 10/12/2013
3.19.0 124 5/22/2013
3.18.0 81 5/3/2013
3.17.4747.34302 69 12/31/2012
3.15.4493.35539 72 4/21/2012
3.14.4476.37307 80 4/4/2012
3.13.4394.2793 73 1/12/2012
3.12.4391.129 75 1/9/2012
3.11.4386.41359 73 1/5/2012
3.10.4385.23576 77 1/3/2012
3.10.4384.37495 73 1/3/2012
3.9.4212.33537 80 9/27/2011
3.9.4201.35525 83 7/4/2011
3.8.4183.745 80 6/15/2011
3.6.4165.15516 81 5/28/2011
3.4.4113.39059 86 4/7/2011
3.4.4099.36606 91 3/24/2011
3.3.4095.39144 89 3/20/2011
3.3.4094.18948 88 3/18/2011
3.3.4092.18182 90 3/16/2011
3.3.4085.33025 91 3/9/2011
3.3.4085.31481 85 3/9/2011
3.3.4084.18411 91 3/8/2011
3.3.4083.30500 87 3/7/2011
3.2.4083.23900 98 3/7/2011
3.2.4080.23422 101 3/4/2011
3.2.4080.1242 98 3/4/2011
3.1.4076.882 156 2/28/2011
3.1.4075.42598 161 2/28/2011
2.7.4064.42994 123 2/17/2011
2.6.0 174 2/14/2011
2.5.0 168 2/14/2011
2.4.0 167 2/14/2011
2.3.4059.22186 131 2/11/2011

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")