Fpr 1.9.1.39105
See the version list below for details.
dotnet add package Fpr --version 1.9.1.39105
NuGet\Install-Package Fpr -Version 1.9.1.39105
<PackageReference Include="Fpr" Version="1.9.1.39105" />
paket add Fpr --version 1.9.1.39105
#r "nuget: Fpr, 1.9.1.39105"
// Install Fpr as a Cake Addin #addin nuget:?package=Fpr&version=1.9.1.39105 // Install Fpr as a Cake Tool #tool nuget:?package=Fpr&version=1.9.1.39105
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.
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 | 4,110 | 2/27/2015 |
1.10.4.39547 | 2,233 | 10/24/2014 |
1.10.3.31415 | 5,536 | 8/5/2014 |
1.10.2.14052 | 1,504 | 8/1/2014 |
1.10.1.26853 | 1,525 | 7/31/2014 |
1.10.0.20033 | 1,499 | 7/31/2014 |
1.9.1.39105 | 1,503 | 7/31/2014 |
1.9.0.27688 | 1,455 | 7/30/2014 |
1.8.0.32006 | 1,517 | 7/27/2014 |
1.7.6.16097 | 1,518 | 7/25/2014 |
1.7.5.12964 | 1,507 | 7/25/2014 |
1.7.4.35837 | 1,537 | 7/25/2014 |
1.7.3.30157 | 1,588 | 7/24/2014 |
1.7.0.22841 | 1,464 | 7/24/2014 |
1.6.0.25724 | 1,513 | 7/18/2014 |
1.5.0.16504 | 1,507 | 7/16/2014 |
1.4.0.16689 | 1,501 | 7/14/2014 |
1.3.2.30767 | 1,599 | 7/10/2014 |
1.3.1.27518 | 1,480 | 7/10/2014 |
1.2.1.22053 | 1,487 | 7/9/2014 |
1.1.9.30100 | 1,521 | 7/5/2014 |
1.1.8.37589 | 1,514 | 6/5/2014 |
Expanded implicit mapping inheritance:
Implicit TSource and TDestination Mapping Inheritance
In some cases you may wish to derive a mapping based on both the source and destination types. In such a case,
setting the global configuration AllowImplicitDestinationInheritance setting to true will allow inheritance of a mapping
based on both the source and destination types. The source class hierarchy is traversed in an inside loop and the
destination class hierarchy is traversed in an outside loop until a match is found.
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 : DerivedDto
{...}
The following mapping will be used for any permutation of Simple/Derived Poco to Simple/Derived Dto
unless overridden by a specific configuration.
TypeAdapterConfig.GlobalSettings.AllowImplicitDestinationInheritance = true;
TypeAdapterConfig<SimplePoco, SimpleDto>.NewConfig()
.Map(dest => dest.Name, src => src.Name + "_Suffix");
If you don't wish a specific permutation to use the base mapping, just define a new configuration for that permutation.
TypeAdapterConfig<DerivedPoco, SimpleDto>.NewConfig();