Quiron.Extensions 1.2.0

dotnet add package Quiron.Extensions --version 1.2.0
                    
NuGet\Install-Package Quiron.Extensions -Version 1.2.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="Quiron.Extensions" Version="1.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Quiron.Extensions" Version="1.2.0" />
                    
Directory.Packages.props
<PackageReference Include="Quiron.Extensions" />
                    
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.Extensions --version 1.2.0
                    
#r "nuget: Quiron.Extensions, 1.2.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 Quiron.Extensions@1.2.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=Quiron.Extensions&version=1.2.0
                    
Install as a Cake Addin
#tool nuget:?package=Quiron.Extensions&version=1.2.0
                    
Install as a Cake Tool

What is the Quiron.Extensions?

Package that compiles several resources repeated many times in projects.

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.Extensions
  • ✅ Newtonsoft.Json
  • ✅ System.Drawing
  • ✅ System.Reflection

Extensions

  • ✅ DateExtension
  • ✅ EmailExtension
  • ✅ EnumExtension
  • ✅ ExceptionExtension
  • ✅ HttpResponseMessageExtension
  • ✅ ListExtension
  • ✅ StreamExtension
  • ✅ StringExtension
  • ✅ OrderByExtension
  • ✅ PropertyFilterExtension

Some Basic Examples

DateExtension

var otherDate = DateTime.Parse("2025-01-01");
bool isToday = otherDate.EqualToday();
bool isTodayOrMinus = otherDate.EqualTodayOrMinus();
bool isTodayOrBigger = otherDate.EqualTodayOrBigger();
bool isBigger = otherDate.IsDateBigger();
bool isMinus = otherDate.IsDateMinus();
int weekly = otherDate.Weekly();

StringExtension

var text = "Package that compiles several resources repeated many times in projects";
string part = text.ToStr(5);
Console.WhiteLine("Packa");

EmailExtension

var email1 = "test@c";
bool invalid = email1.IsValid();
Console.WhiteLine("false");

var email2 = "test@quiron.com";
bool valid = email2.IsValid();
Console.WhiteLine("true");

PropertyFilterExtension

var listFilters = list.ToFilterString("id,name");

OrderByExtension

var list1 = list.OrderByMultipleKeys("id:asc,name:asc");

var list2 = list.OrderByMultiple("id:asc,name:asc");

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.Extensions 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.Extensions:

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.0 169 8/3/2025
1.1.0 397 5/2/2025
1.0.0 197 5/1/2025

Add new method to filters and orderBy 'PropertyFilterExtension' for 'OrderByExtension'.