Fpr 1.9.0.27688

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

// Install Fpr as a Cake Tool
#tool nuget:?package=Fpr&version=1.9.0.27688

A fast, fun and stimulating object to object mapper.  Kind of like AutoMapper, just simpler and way, way faster.

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
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
1.11.0 3,596 2/27/2015
1.10.4.39547 2,195 10/24/2014
1.10.3.31415 5,350 8/5/2014
1.10.2.14052 1,467 8/1/2014
1.10.1.26853 1,492 7/31/2014
1.10.0.20033 1,468 7/31/2014
1.9.1.39105 1,470 7/31/2014
1.9.0.27688 1,425 7/30/2014
1.8.0.32006 1,488 7/27/2014
1.7.6.16097 1,465 7/25/2014
1.7.5.12964 1,475 7/25/2014
1.7.4.35837 1,501 7/25/2014
1.7.3.30157 1,553 7/24/2014
1.7.0.22841 1,444 7/24/2014
1.6.0.25724 1,480 7/18/2014
1.5.0.16504 1,476 7/16/2014
1.4.0.16689 1,465 7/14/2014
1.3.2.30767 1,560 7/10/2014
1.3.1.27518 1,445 7/10/2014
1.2.1.22053 1,451 7/9/2014
1.1.9.30100 1,479 7/5/2014
1.1.8.37589 1,477 6/5/2014

Implicit TSource Mapping Inheritance

If a mapping configuration doesn't exist for a source ==> destination type, but a mapper does exist for a base source type to the destination, that mapping will be used. This allows mappings for less derived source types to be used to satisfy multiple derived mappings. FPR will search downward the source class hierarchy until it finds a matching configuration.
If no match exists, it will create a default configuration (the same behavior if no mapping was present). It doesn't combine derived configs, it will stop at the first match.
For example, if you have:

public class SimplePoco
{
   public Guid Id { get; set; }
   public string Name { get; set; }
}

public class DerivedPoco : SimplePoco
{...}

public class DerivedPoco2 : SimplePoco
{...}

public class SimpleDto
{
   public Guid Id { get; set; }
   public string Name { get; set; }
}
The following mapping will be used when mapping the SimplePoco or either of the derived POCOs to the Simple DTO.

TypeAdapterConfig<SimplePoco, SimpleDto>.NewConfig()
   .Map(dest => dest.Name, src => src.Name + "_Suffix");
If you don't wish for a derived type to use the base mapping, just define a new configuration for that type.

TypeAdapterConfig<DerivedPoco2, SimpleDto>.NewConfig();