Quiron.Extensions
1.2.0
dotnet add package Quiron.Extensions --version 1.2.0
NuGet\Install-Package Quiron.Extensions -Version 1.2.0
<PackageReference Include="Quiron.Extensions" Version="1.2.0" />
<PackageVersion Include="Quiron.Extensions" Version="1.2.0" />
<PackageReference Include="Quiron.Extensions" />
paket add Quiron.Extensions --version 1.2.0
#r "nuget: Quiron.Extensions, 1.2.0"
#:package Quiron.Extensions@1.2.0
#addin nuget:?package=Quiron.Extensions&version=1.2.0
#tool nuget:?package=Quiron.Extensions&version=1.2.0
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 | Versions 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. |
-
net9.0
- Newtonsoft.Json (>= 13.0.3)
- System.Drawing.Common (>= 9.0.7)
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.
Add new method to filters and orderBy 'PropertyFilterExtension' for 'OrderByExtension'.