Quiron.Expression 1.1.14

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Quiron.Expression --version 1.1.14
                    
NuGet\Install-Package Quiron.Expression -Version 1.1.14
                    
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="Quiron.Expression" Version="1.1.14" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Quiron.Expression" Version="1.1.14" />
                    
Directory.Packages.props
<PackageReference Include="Quiron.Expression" />
                    
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 Quiron.Expression --version 1.1.14
                    
#r "nuget: Quiron.Expression, 1.1.14"
                    
#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 Quiron.Expression@1.1.14
                    
#: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=Quiron.Expression&version=1.1.14
                    
Install as a Cake Addin
#tool nuget:?package=Quiron.Expression&version=1.1.14
                    
Install as a Cake Tool

What is the Quiron.Expression?

Package used to convert filters coming from a 'ViewModel' coming from the controller to an expression recognized by one understood in the 'EntityFrameworkCore'.

Give a Star! ⭐

If you find this project useful, please give it a star! It helps us grow and improve the community.

Namespaces and Dependencies

  • ✅ Quiron.Expression
  • ✅ System.Linq.Expressions

Methods

  • ✅ Builder
  • ✅ ConvertIncludesExpression

Some Basic Examples

Filter Convert

var list = new List<ViewModel>
{
	new ViewModel { Id = 0, Date = DateTime.Now },
	new ViewModel { Id = 1, Date = DateTime.Now.AddDays(1) }
};
Expression<Func<ViewModel, bool>> filter = list.Where(e => e.Id == 0 && e.Date = DateTime.Now);

var filterConverted = ExpressionConvert.Builder<ViewModel, Entity>(expression);

Usage Reference

For more details, access the test project that has the practical implementation of the package's use.

https://github.com/EliasRMJ/Quiron.EntityFrameworkCore.Test

Supports:

  • ✅ .NET Standard 2.1
  • ✅ .NET 9 through 9 (including latest versions)
  • ⚠️ Legacy support for .NET Core 3.1 and older (with limitations)

About

Quiron.Expression was developed by EliasRMJ under the MIT license.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  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 Quiron.Expression:

Package Downloads
Quiron.EntityFrameworkCore

To accelerate the development of more robust systems, the "Quiron.EntityFrameworkCore" package was created. With all the features offered and the best practices and methodology currently used, you will focus on developing your business in the application, without wasting time creating persistence methods and filters.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.2.1-rc 104 7/12/2025
1.1.14 226 5/23/2025
1.0.1 235 5/1/2025
1.0.0 140 5/1/2025

Bug fix