DotNetMapper 1.0.2
dotnet add package DotNetMapper --version 1.0.2
NuGet\Install-Package DotNetMapper -Version 1.0.2
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="DotNetMapper" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DotNetMapper" Version="1.0.2" />
<PackageReference Include="DotNetMapper" />
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 DotNetMapper --version 1.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DotNetMapper, 1.0.2"
#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.
#addin nuget:?package=DotNetMapper&version=1.0.2
#tool nuget:?package=DotNetMapper&version=1.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
DotNetMapper
A simple object mapper for .NET which is a lightweight and fast. It provides a simple and easy-to-use API for mapping objects of one type to another.
Installation
You can install DotNetMapper via NuGet Package Manager by searching for DotNetMapper
or by running the following command in the Package Manager Console:
Install-Package DotNetMapper
Usage
Using DotNetMapper is very easy. Here's an example of how to use it:
using DotNetMapper;
// Define input and output classes
public class InputClass
{
public int Id { get; set; }
public string Name { get; set; }
}
public class OutputClass
{
public int Id { get; set; }
public string Name { get; set; }
}
// Map input to output
var input = new InputClass { Id = 1, Name = "John" };
var output = Mapper.Map<InputClass, OutputClass>(input);
// Output will be a new instance of OutputClass with the same values as input
Information
- DotNetMapper is licensed under the MIT License, so feel free to use it in your projects.
- Contributions to DotNetMapper are welcome! If you want to contribute, please fork the repository and submit a pull request.
- If you encounter any bugs or issues, please open an issue on the GitHub repository so that they can be addressed.
- DotNetMapper is built with performance in mind. It uses a concurrent dictionary to cache the mapping functions, which ensures that they are only created once and can be used multiple times without being recreated.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net7.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.