GodelTech.Data.AutoMapper 9.0.0

dotnet add package GodelTech.Data.AutoMapper --version 9.0.0
                    
NuGet\Install-Package GodelTech.Data.AutoMapper -Version 9.0.0
                    
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="GodelTech.Data.AutoMapper" Version="9.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="GodelTech.Data.AutoMapper" Version="9.0.0" />
                    
Directory.Packages.props
<PackageReference Include="GodelTech.Data.AutoMapper" />
                    
Project file
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 GodelTech.Data.AutoMapper --version 9.0.0
                    
#r "nuget: GodelTech.Data.AutoMapper, 9.0.0"
                    
#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.
#:package GodelTech.Data.AutoMapper@9.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=GodelTech.Data.AutoMapper&version=9.0.0
                    
Install as a Cake Addin
#tool nuget:?package=GodelTech.Data.AutoMapper&version=9.0.0
                    
Install as a Cake Tool

GodelTech.Data.AutoMapper

Description

GodelTech.Data.AutoMapper is a .NET library that integrates AutoMapper with GodelTech.Data, providing a seamless way to map data entities. It implements the IDataMapper interface from GodelTech.Data using the AutoMapper NuGet package, allowing efficient and straightforward object-to-object mapping.

Overview

GodelTech.Data.AutoMapper implements GodelTech.Data IDataMapper interface using AutoMapper NuGet package. It allows to use mapping of TEntity to TModel.

public class DataMapper : IDataMapper
{
    private readonly IMapper _mapper;

    public DataMapper(IMapper mapper)
    {
        _mapper = mapper;
    }

    public IQueryable<TDestination> Map<TDestination>(IQueryable source)
    {
        return _mapper.ProjectTo<TDestination>(source);
    }
}

License

This project is licensed under the MIT License. See the LICENSE file for more details.

Product 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.  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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on GodelTech.Data.AutoMapper:

Package Downloads
GodelTech.Microservices.Data.EntityFrameworkCore

Microservice initializer for GodelTech.Data.EntityFrameworkCore.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
9.0.0 145 9/4/2025
8.1.0 566 7/1/2024
8.0.0 4,808 1/17/2024
7.0.0 2,092 9/17/2023
6.5.0 5,163 11/2/2022
6.4.0 758 10/16/2022
6.3.0 7,419 8/18/2022
6.2.0 1,103 7/15/2022
6.1.0 537 7/6/2022
6.0.0 684 4/3/2022
5.0.0 1,170 8/5/2021
3.1.1 451 7/17/2021
3.0.0 971 11/21/2020
1.0.0-rc.2 858 7/13/2020
1.0.0-rc.1 419 7/10/2020