Ahura.Extensions.Mapper.Abstraction
1.0.0
dotnet add package Ahura.Extensions.Mapper.Abstraction --version 1.0.0
NuGet\Install-Package Ahura.Extensions.Mapper.Abstraction -Version 1.0.0
<PackageReference Include="Ahura.Extensions.Mapper.Abstraction" Version="1.0.0" />
paket add Ahura.Extensions.Mapper.Abstraction --version 1.0.0
#r "nuget: Ahura.Extensions.Mapper.Abstraction, 1.0.0"
// Install Ahura.Extensions.Mapper.Abstraction as a Cake Addin #addin nuget:?package=Ahura.Extensions.Mapper.Abstraction&version=1.0.0 // Install Ahura.Extensions.Mapper.Abstraction as a Cake Tool #tool nuget:?package=Ahura.Extensions.Mapper.Abstraction&version=1.0.0
Ahura.Extensions.Mapper
In .NET, an object mapper automatically converts one object type to another, often used to simplify data transfer between layers like DTOs and domain models. Popular libraries reduce boilerplate code by mapping properties with similar names, improving code readability and maintainability, and making it easier to manage transformations.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
-
net8.0
- No dependencies.
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Ahura.Extensions.Mapper.Abstraction:
Package | Downloads |
---|---|
Ahura.Utility
This package is designed to serve as the core repository of all interface definitions needed by other packages within the framework. By housing all shared interfaces in one package, it provides a structured approach to maintaining clean and organized code across various modules, promoting consistency, modularity, and easy dependency management. Interfaces in this package act as standardized contracts, defining expected behaviors for key functionalities across different components. This allows each package to interact with other parts of the system in a consistent and predictable way, regardless of the underlying implementation details. Consequently, each package within the framework can reference and implement these interfaces without needing direct dependencies on specific implementations, which helps ensure a loosely coupled architecture. With all interfaces centralized, developers can more easily modify or replace implementations without impacting dependent packages, improving the framework’s flexibility and scalability. This separation also simplifies testing, as developers can mock interfaces independently of their implementations, making it easier to verify the behavior of individual components and improving the testability of the entire system. By promoting reusable code and standardized interactions, this package enables the development of scalable, maintainable applications while ensuring a clear structure and facilitating seamless collaboration among different modules of the framework. |
|
Ahura.Extensions.Mapper.AutoMapper
AutoMapper is a .NET library that automates the process of mapping data between objects, making it easier to convert one object type to another. It automatically maps properties with matching names and types, and supports custom mappings for more complex scenarios. AutoMapper uses profiles to organize mapping configurations, which helps maintain clean and structured code. It simplifies tasks like mapping domain models to DTOs or flattening nested objects, reducing the need for repetitive property assignments and improving code readability and maintainability. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 101 | 10/21/2024 |
Initial release with object Mapper for .NET