Fpr 1.10.1.26853
See the version list below for details.
dotnet add package Fpr --version 1.10.1.26853
NuGet\Install-Package Fpr -Version 1.10.1.26853
<PackageReference Include="Fpr" Version="1.10.1.26853" />
<PackageVersion Include="Fpr" Version="1.10.1.26853" />
<PackageReference Include="Fpr" />
paket add Fpr --version 1.10.1.26853
#r "nuget: Fpr, 1.10.1.26853"
#:package Fpr@1.10.1.26853
#addin nuget:?package=Fpr&version=1.10.1.26853
#tool nuget:?package=Fpr&version=1.10.1.26853
A fast, fun and stimulating object to object mapper. Kind of like AutoMapper, just simpler and way, way faster.
| Product | Versions 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. | 
This package has no dependencies.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated | 
|---|---|---|
| 1.11.0 | 292 | 2/27/2015 | 
| 1.10.4.39547 | 343 | 10/24/2014 | 
| 1.10.3.31415 | 2,541 | 8/5/2014 | 
| 1.10.2.14052 | 71 | 8/1/2014 | 
| 1.10.1.26853 | 70 | 7/31/2014 | 
| 1.10.0.20033 | 69 | 7/31/2014 | 
| 1.9.1.39105 | 71 | 7/31/2014 | 
| 1.9.0.27688 | 73 | 7/30/2014 | 
| 1.8.0.32006 | 82 | 7/27/2014 | 
| 1.7.6.16097 | 78 | 7/25/2014 | 
| 1.7.5.12964 | 82 | 7/25/2014 | 
| 1.7.4.35837 | 78 | 7/25/2014 | 
| 1.7.3.30157 | 68 | 7/24/2014 | 
| 1.7.0.22841 | 78 | 7/24/2014 | 
| 1.6.0.25724 | 88 | 7/18/2014 | 
| 1.5.0.16504 | 89 | 7/16/2014 | 
| 1.4.0.16689 | 89 | 7/14/2014 | 
| 1.3.2.30767 | 146 | 7/10/2014 | 
| 1.3.1.27518 | 78 | 7/10/2014 | 
| 1.2.1.22053 | 77 | 7/9/2014 | 
| 1.1.9.30100 | 80 | 7/5/2014 | 
| 1.1.8.37589 | 78 | 6/5/2014 | 
Added explicit inheritance and fixed a bug with multi-threaded startup 
Explicit Mapping Inheritance 
In some cases, you may wish to have one mapping inherit from another mapping.  In this case, anything set on the derived mapping 
will override settings on the base mapping.  So unlike implicit mapping inheritance, where the goal is to find an applicable mapping 
configuration and configurations are not combined, with Explicit Inheritance, each derived mapping overrides the settings of the 
inherited mapping.  Use the Inherits<TBaseSource, TBaseDestination> configuration method to accomplish this where TBaseSource and 
TBaseDestination must be assignable from the derived configuration's TSource and TDestination respectively. 
For example, if you have: 
    public class SimplePoco 
    { 
        public Guid Id { get; set; } 
        public string Name { get; set; } 
    } 
    public class DerivedPoco : SimplePoco 
    {...} 
    public class SimpleDto 
    { 
        public Guid Id { get; set; } 
        public string Name { get; set; } 
    } 
    public class DerivedDto : SimpleDto 
    {...} 
And you have the following base mapping: 
    TypeAdapterConfig<SimplePoco, SimpleDto>.NewConfig() 
        .Map(dest => dest.Name, src => src.Name + "_Suffix"); 
You can base the mapping of the derived classes on this base mapping: 
    
    TypeAdapterConfig<DerivedPoco, DerivedDto>.NewConfig() 
        .Inherits<SimplePoco, SimpleDto>();