Automapify 1.0.16

dotnet add package Automapify --version 1.0.16
NuGet\Install-Package Automapify -Version 1.0.16
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="Automapify" Version="1.0.16" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Automapify --version 1.0.16
#r "nuget: Automapify, 1.0.16"
#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 Automapify as a Cake Addin
#addin nuget:?package=Automapify&version=1.0.16

// Install Automapify as a Cake Tool
#tool nuget:?package=Automapify&version=1.0.16

Automapify

This dotnet library facilitates object mappings without the need for service setup or configuration.

Basic Usage

There are two methods for utilizing this tool: Attributes and Configuration

Attributes
  • Specify the property name from the source in the destination object using the MapProperty attribute

          public int Id { get; set; }
    
          public string Name { get; set; }
    
          public int Age { get; set; }
    
          [MapProperty("DateOfBirth")]
          public DateTime DOB { get; set; }
    
          public bool IsDeleted { get; set; }
    
          public Classroom Room {get; set; }
    
Map to a new object
    var studentDto = student1.Map<Student,StudentDto>();
Map to an existing object
  studentDto.Map<Student,StudentDto>(student1);
Configuration
  • Establish a configuration to illustrate the mapping of values.
     public static class MappingService
   {
       public static MapifyConfiguration<Student,StudentDtos> StudentConfig()
       {
           return new MapifyConfigurationBuilder<Student, StudentDto>()
               .Map(d => d.Name, s => $"{s.FirstName} {s.LastName}")
               .Map(d => d.Age, s => s.DateOfBirth.ToAge())
               .Map(d=>d.DOB, s => s.DateOfBirth)
               .Map(d=>d.IsDeleted, s => false)
               .Map(d=>d.Classroom, s=> s.Room)
               .CreateConfig();
       }
   }
Map to a new object
  var studentDto = student.Map<Student,StudentDto>(MappingService.StudentConfig());
Map to an existing object
   studentDto.Map<Student,StudentDto>(student1,MappingService.StudentConfig());
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • 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.0.16 108 2/2/2024