DevTeam.QueryMappings
3.3.0
dotnet add package DevTeam.QueryMappings --version 3.3.0
NuGet\Install-Package DevTeam.QueryMappings -Version 3.3.0
<PackageReference Include="DevTeam.QueryMappings" Version="3.3.0" />
paket add DevTeam.QueryMappings --version 3.3.0
#r "nuget: DevTeam.QueryMappings, 3.3.0"
// Install DevTeam.QueryMappings as a Cake Addin
#addin nuget:?package=DevTeam.QueryMappings&version=3.3.0
// Install DevTeam.QueryMappings as a Cake Tool
#tool nuget:?package=DevTeam.QueryMappings&version=3.3.0
QueryMappings
Query mappings provide simple strongly typed interface optimized for Entity Framework and IQueryable.
Motivation
As we use Entity Framework and IQueryable interface for a tons of different projects, we needed some naturally adaptable mapping interface to IQueryable interface. This interface should support possibility to pass arguments for more complicated mapping cases. Also there are cases when we can't have Navigation Property between objects or when we want to write LINQ syntax for queries, so we needed possibility to inject EF Context inside of the mapping.
Features
- Simple and strongly typed mapping interface. Mappings API should be natural - we just map one object to another, we don't need 10 different methods just to do it:
_mappingsList.Add<Address, AddressModel>(x => new AddressModel
{
Id = x.Id,
BuildingNumber = x.BuildingNumber,
City = x.City,
State = x.State,
Country = (Countries)x.Country,
Street = x.Street,
ZipCode = x.ZipCode
});
- Oriented on Entity Framework. Best support of IQueryable and even injection of Entity Framework context inside of the mapping expression.
_mappingsList.Add<Building, BuildingStatisticsModel, BuildingArguments, IDbContext>(args =>
{
return (query, context) =>
from building in query
join review in context.Set<Review>() on new { EntityId = building.Id, EntityTypeId = (int)EntityType.Building }
equals new { EntityId = review.EntityId, EntityTypeId = review.EntityTypeId }
into reviews
let address = building.Address
select new BuildingStatisticsModel
{
Id = building.Id,
Address = address.BuildingNumber + ", " + address.Street + ", " + address.City,
AppartmentsCount = building.Appartments.Count(),
Size = building.Appartments.Sum(app => app.Size),
ResidentsCount = building.Appartments.SelectMany(app => app.Residents).Where(r => r.Age > args.TargetResidentsAge).Count(),
AverageBuildingRating = reviews.Average(r => r.Rating)
};
});
- Possibility to pass and use arguments inside of the mapping
_mappingsList.Add<Appartment, AppartmentModel, AppartmentsArguments>(args =>
{
return x => new AppartmentModel
{
Id = x.Id,
Badrooms = x.Badrooms,
Bathrooms = x.Bathrooms,
Floor = x.Floor,
IsLodge = x.IsLodge,
Number = x.Number,
Size = x.Size.ToString() + args.UnitOfMeasure
};
});
Strobgly typed interface. If types of your models have changed you will see compile-time errors.
No any reflection is used in runtime. Only one place when reflection is used - start of application.
Documentation
You can find documentation in the wiki to this repository.
Support
If you found any bug, please submit bug in our [issue tracker] (https://github.com/DevTeamHub/QueryMappings/issues). If you can submit [pull request] with fix (https://github.com/DevTeamHub/QueryMappings/pulls) - even better! And we will be happy to hear different suggestions to improve this project.
Future
Main features in the near future is reusable mappings and object-to-object mappings. You can find roadmap to the project here.
How to start
Please reference to quick start in our wiki.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.1 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 2.1
- No dependencies.
NuGet packages (2)
Showing the top 2 NuGet packages that depend on DevTeam.QueryMappings:
Package | Downloads |
---|---|
DevTeam.GenericService
Package provides integration between Generic Repository and Query Mappings for Entity Framework |
|
DevTeam.QueryMappings.AspNetCore
The package helps to integrate DevTeam.QueryMappings into ASP.NET Core project. |
GitHub repositories
This package is not used by any popular GitHub repositories.