VOOZH about

URL: https://www.nuget.org/packages/AutoMapper.AspNetCore.OData.EFCore/

⇱ NuGet Gallery | AutoMapper.AspNetCore.OData.EFCore 10.0.0




👁 Image
AutoMapper.AspNetCore.OData.EFCore 10.0.0

Prefix Reserved
dotnet add package AutoMapper.AspNetCore.OData.EFCore --version 10.0.0
 
 
NuGet\Install-Package AutoMapper.AspNetCore.OData.EFCore -Version 10.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="AutoMapper.AspNetCore.OData.EFCore" Version="10.0.0" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AutoMapper.AspNetCore.OData.EFCore" Version="10.0.0" />
 
Directory.Packages.props
<PackageReference Include="AutoMapper.AspNetCore.OData.EFCore" />
 
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 AutoMapper.AspNetCore.OData.EFCore --version 10.0.0
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: AutoMapper.AspNetCore.OData.EFCore, 10.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 AutoMapper.AspNetCore.OData.EFCore@10.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=AutoMapper.AspNetCore.OData.EFCore&version=10.0.0
 
Install as a Cake Addin
#tool nuget:?package=AutoMapper.AspNetCore.OData.EFCore&version=10.0.0
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

AutoMapper.Extensions.OData

Creates LINQ expressions from ODataQueryOptions and executes the query.

NuGet Package Downloads

👁 NuGet

Usage

To use:

  • Configure object maps with explicit expansion.
  • Call the GetAsync or GetQueryAsync extension method from your OData controller. IMapper is an AutoMapper interface.
 public class CoreBuildingMappings : AutoMapper.Profile
 {
 public CoreBuildingMappings()
 {
 CreateMap<TBuilding, CoreBuilding>()
 .ForMember(d => d.Name, o => o.MapFrom(s => s.LongName))
 .ForMember(d => d.Tenant, o => o.MapFrom(s => s.Mandator))
 .ForAllMembers(o => o.ExplicitExpansion());

 CreateMap<TBuilder, OpsBuilder>()
 .ForAllMembers(o => o.ExplicitExpansion());
 CreateMap<TCity, OpsCity>()
 .ForAllMembers(o => o.ExplicitExpansion());
 }
 }
public static async Task<IQueryable<TModel>> GetQueryAsync<TModel, TData>(this IQueryable<TData> query, IMapper mapper, ODataQueryOptions<TModel> options, HandleNullPropagationOption handleNullPropagation = HandleNullPropagationOption.Default);
 public class CoreBuildingController : ODataController
 {

	private readonly IMapper _mapper;
 public CoreBuildingController(MyDbContext context, IMapper mapper)
 {
 Context = context;
 _mapper = mapper;
 }

 MyDbContext Context { get; set; }

 [HttpGet]
 public async Task<IActionResult> Get(ODataQueryOptions<CoreBuilding> options)
 {
 return Ok(await Context.BuildingSet.GetQueryAsync(_mapper, options));
 }
 }

<br><br>

Do not use the EnableQuery Attribute

Using EnableQuery with AutoMapper.Extensions.OData will result in some operations being applied more than once e.g. in the tests, if TMandator has a total of two records then without EnableQuery applied to the controller action, the OData query http://localhost:16324/opstenant?$skip=1&$top=1&$orderby=Name will return one record as expected. However with EnableQuery applied no records will be returned because the skip operation has been applied twice.

<br><br>

OData query examples:

	http://localhost:<port>/opstenant?$top=5&$expand=Buildings&$filter=Name eq 'One'&$orderby=Name desc
	http://localhost:<port>/opstenant?$top=5&$expand=Buildings&$filter=Name ne 'One'&$orderby=Name desc
	http://localhost:<port>/opstenant?$filter=Name eq 'One'
	http://localhost:<port>/opstenant?$top=5&$expand=Buildings&$orderby=Name desc
	http://localhost:<port>/opstenant?$orderby=Name desc
	http://localhost:<port>/opstenant?$orderby=Name desc&$count=true
	http://localhost:<port>/opstenant?$top=5&$filter=Name eq 'One'&$orderby=Name desc&$count=true
	http://localhost:<port>/opstenant?$top=5&$select=Name, Identity
	http://localhost:<port>/opstenant?$top=5&$expand=Buildings&$filter=Name ne 'One'&$orderby=Name desc
	http://localhost:<port>/opstenant?$top=5&$expand=Buildings($expand=Builder($expand=City))&$filter=Name ne 'One'&$orderby=Name desc
	http://localhost:<port>/opstenant?$top=5&$select=Buildings,Name&$expand=Buildings($select=Name,Builder;$expand=Builder($select=Name,City;$expand=City))&$filter=Name ne 'One'&$orderby=Name desc

	http://localhost:<port>/corebuilding?$top=5&$expand=Builder,Tenant&$filter=name ne 'One L1'&$orderby=Name desc
	http://localhost:<port>/corebuilding?$top=5&$expand=Builder($expand=City),Tenant&$filter=name ne 'One L2'&$orderby=Name desc
Product Versions Compatible and additional computed target framework versions.
.NET net8.0 net8.0 is compatible.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 is compatible.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 is compatible.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows 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 AutoMapper.AspNetCore.OData.EFCore:

Package Downloads
RESTworld.AspNetCore

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
10.0.0 12,841 4/1/2026
9.1.0 4,003 3/10/2026
9.0.0 6,031 12/19/2025
8.1.0 5,582 11/23/2025
8.0.0 30,669 7/12/2025
7.0.4 75,036 7/5/2025
7.0.2 71,142 5/10/2025
7.0.1 71,431 4/23/2025
7.0.0 84,008 2/15/2025
6.1.1 34,279 1/19/2025
6.1.0 9,795 1/3/2025
6.0.0 46,766 11/27/2024
5.0.2 1,707,819 7/27/2024
5.0.1 88,267 6/13/2024
5.0.0 817,157 2/19/2024
4.0.2 78,048 12/28/2023
4.0.1 181,850 8/19/2023
4.0.0 384,345 10/1/2022
3.0.6 23,246 10/1/2022
3.0.5 213,964 6/17/2022
Loading failed

Removing obsolete methods and using the latest version of AutoMapper.Extensions.ExpressionMapping. Ending maintenance for AutoMapper.AspNetCore.OData.EF6.