MarrDataMapper 3.39.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package MarrDataMapper --version 3.39.0
                    
NuGet\Install-Package MarrDataMapper -Version 3.39.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.39.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MarrDataMapper" Version="3.39.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.39.0
                    
#r "nuget: MarrDataMapper, 3.39.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.39.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.39.0
                    
Install as a Cake Addin
#tool nuget:?package=MarrDataMapper&version=3.39.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.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.48.0 3,114 9/15/2015
3.47.0 2,326 4/19/2015
3.46.0 2,203 4/19/2015
3.45.0 2,139 4/19/2015
3.44.0 2,033 4/2/2015
3.43.0 1,956 3/22/2015
3.42.0 2,027 3/6/2015
3.41.0 2,477 3/4/2015
3.40.0 2,165 3/3/2015
3.39.0 2,342 3/2/2015
3.38.0 2,246 2/10/2015
3.37.0 2,305 2/9/2015
3.36.0 2,226 2/7/2015
3.35.0 2,235 2/7/2015
3.34.0 2,162 1/29/2015
3.33.0 2,154 1/26/2015
3.32.0 2,134 1/25/2015
3.31.0 2,178 1/25/2015
3.30.0 2,113 1/25/2015
3.22.0 2,085 1/20/2015
Loading failed

v3.39
- Fixed bug that prevented Linq Where expressions from working if the constant value was on the left side of the equality expression (==)
- Fixed exception that was thrown when a member existed at multiple levels of an object graph
- Improved exception message when members are requested via Graph function that do not already have a relationship defined.

v3.38
- Added a new RelationshipLoadException that details the parent and child entities when an eager load, lazy load or join fails
- An NotSupportedException is now thrown if both eager loaded and joined relationships are defined within the same entity.
- Fixed bug with FluentMappings AutoMap methods: read-only columns are ignored.

v3.37
- Generic interface types are now supported for related one-to-many properties. Ex: IEnumerable<OrderItem> OrderItems

- Fixed exception that occurred when trying to load an object graph using a combination of eager/lazy loaded relationship with a join relationship.
(This only applied to object graphs with two or more levels of relationships.)
User should be able to specify any combination of the above relationships in an object graph.