QueryR.EntityFrameworkCore 0.1.0

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

// Install QueryR.EntityFrameworkCore as a Cake Tool
#tool nuget:?package=QueryR.EntityFrameworkCore&version=0.1.0

QueryR.EntityFrameworkCore

QueryR Logo

.NET

QueryR.EntityFrameworkCore adds a few important items into QueryR for use with EntityFrameworkCore.

Includes

QueryR.EntityFrameworkCore introduces a new EfQuery object that should be used for querying instead of the QueryR Query object.

The EfQuery object has an Includes member where the navigation property path can be set to include related entities with the query. It is important to use this setting for specifying Include statements as the values control the maximum search depth for the SparseFields.

Async QueryResult Extensions

QueryR.EntityFrameworkCore would not be complete without new QueryResult extension methods to call the CountAsync and ToListAsync extension methods provided by EntityFrameworkCore.

Web Api Example

public class GetAll(IGetAllKerbalsService getAllKerbalsService) : ControllerBase
{
    [HttpGet(Routes.Api.Kerbals.Url)]
    public async Task<IActionResult> Action(
        [FromQuery(Name = "")] QueryParameters parameters) =>
            Ok(await getAllKerbalsService.GetAllAsync(parameters));

    public class ListWithTotalCount<T>
    {
        public int TotalCount { get; set; }
        public List<T> Items { get; set; } = new();
    }
    public interface IGetAllKerbalsService
    {
        Task<ListWithTotalCount<Kerbal>> GetAllAsync(QueryParameters parameters, CancellationToken cancellationToken = default);
    }
    public class GetAllKerbalsService(
        IQueryParametersMapper queryParametersMapper,
        KerbalDbContext kerbalDbContext
        ) : IGetAllKerbalsService
    {
        public readonly IQueryParametersMapper queryParametersMapper = queryParametersMapper;
        public readonly KerbalDbContext kerbalDbContext = kerbalDbContext;

        public async Task<ListWithTotalCount<Kerbal>> GetAllAsync(QueryParameters parameters, CancellationToken cancellationToken = default)
        {
            kerbalDbContext.Database.EnsureCreated();

            var query = queryParametersMapper.ToQuery(parameters);

            var (totalCount, kerbals) = await kerbalDbContext.Set<Kerbal>().Query(query)
                .GetCountAndListAsync(cancellationToken);

            //Normally you would use a DTO mapper here to prevent cyclic dependencies.
            //The ExampleRequests.http file has a request that uses sparse fields to avoid this for the purposes of the demo.
            return new ListWithTotalCount<Kerbal>
            {
                TotalCount = totalCount,
                Items = kerbals
            };
        }
    }
}

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.1.0 82 6/2/2024
0.0.1 195 1/27/2023

Removed hard entity framework core dependency and .net version dependency.