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.
<PackageVersion Include="MarrDataMapper" Version="3.47.0" />
                    
Directory.Packages.props
<PackageReference Include="MarrDataMapper" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version 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.
#:package MarrDataMapper@3.47.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=MarrDataMapper&version=3.47.0
                    
Install as a Cake Addin
#tool nuget:?package=MarrDataMapper&version=3.47.0
                    
Install as a Cake Tool

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 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
Loading failed

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