GodelTech.Data.AutoMapper 8.1.0

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

// Install GodelTech.Data.AutoMapper as a Cake Tool
#tool nuget:?package=GodelTech.Data.AutoMapper&version=8.1.0

GodelTech.Data.AutoMapper

Library for using AutoMapper with GodelTech.Data.

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);
    }
}
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.

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
8.1.0 100 7/1/2024
8.0.0 484 1/17/2024
7.0.0 1,920 9/17/2023
6.5.0 4,128 11/2/2022
6.4.0 635 10/16/2022
6.3.0 6,512 8/18/2022
6.2.0 971 7/15/2022
6.1.0 433 7/6/2022
6.0.0 571 4/3/2022
5.0.0 1,054 8/5/2021
3.1.1 334 7/17/2021
3.0.0 835 11/21/2020
1.0.0-rc.2 647 7/13/2020
1.0.0-rc.1 301 7/10/2020