OLT.Searchers.DateRange 6.0.4

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package OLT.Searchers.DateRange --version 6.0.4                
NuGet\Install-Package OLT.Searchers.DateRange -Version 6.0.4                
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="OLT.Searchers.DateRange" Version="6.0.4" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add OLT.Searchers.DateRange --version 6.0.4                
#r "nuget: OLT.Searchers.DateRange, 6.0.4"                
#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 OLT.Searchers.DateRange as a Cake Addin
#addin nuget:?package=OLT.Searchers.DateRange&version=6.0.4

// Install OLT.Searchers.DateRange as a Cake Tool
#tool nuget:?package=OLT.Searchers.DateRange&version=6.0.4                

CI Quality Gate Status

OltSearcherDateRange and OltDateRange model class to build a date range searchers/expressions (IQueryable)

Utilizes FluentDateTime to build out OltDateRange defaults (i.e., OltDateRange.Today)

public class MyEntitySearcher : OltSearcherDateRange<MyEntity>
{
    public MyEntitySearcher() : base() { }

    public MyEntitySearcher(OltDateRange value) : base(value) { }

    public MyEntitySearcher(DateTimeOffset start, DateTimeOffset end) : base(start, end) { }

    public override IQueryable<MyEntity> BuildQueryable(IQueryable<MyEntity> queryable)
    {
        return queryable.Where(p => p.SomeDate >= Value.Start && p.SomeDate < QueryEnd);
    }
}


// Example Searchers
MyEntitySearcher searcher;
searcher = new MyEntitySearcher(new OltDateRange(DateTimeOffset.Now.AddMonths(-3), DateTimeOffset.Now));

searcher = new MyEntitySearcher(OltDateRange.Today);
searcher = new MyEntitySearcher(OltDateRange.Yesterday);
searcher = new MyEntitySearcher(OltDateRange.Last7Days);
searcher = new MyEntitySearcher(OltDateRange.Next7Days);
searcher = new MyEntitySearcher(OltDateRange.ThisMonth);
searcher = new MyEntitySearcher(OltDateRange.LastMonth);
searcher = new MyEntitySearcher(OltDateRange.MonthToDate);
searcher = new MyEntitySearcher(OltDateRange.ThisWeek);
searcher = new MyEntitySearcher(OltDateRange.NextWeek);

//Midnight() is an extension provided by FluentDateTime.  See The package for all the extensions
searcher = new MyEntitySearcher(DateTimeOffset.Now.Midnight(), DateTimeOffset.Now.AddDays(3).Midnight());

//TODO: QuarterToDate, PreviousQuarter, YTD, LastYear, NextMonth, ThisYear, Tomorrow

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 (1)

Showing the top 1 NuGet packages that depend on OLT.Searchers.DateRange:

Package Downloads
OLT.Searchers.GenericFilter

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.4.0-beta-0010 88 11/7/2024
8.4.0-beta-0005 93 10/9/2024
8.3.1 269 8/26/2024
8.3.1-beta-0005 157 8/21/2024
8.3.0 165 8/9/2024
8.3.0-beta-0015 96 6/3/2024
8.3.0-beta-0010 100 5/13/2024
8.3.0-beta-0005 112 5/10/2024
8.2.1 452 4/22/2024
8.2.0 174 4/8/2024
8.1.0 221 3/10/2024
8.0.0 234 2/21/2024
8.0.0-beta-0030 555 2/19/2024
8.0.0-beta-0025 338 1/15/2024
8.0.0-beta-0020 309 1/15/2024
8.0.0-beta-0015 356 12/29/2023
8.0.0-beta-0010 348 12/20/2023
8.0.0-beta-0005 431 12/9/2023
7.2.0 559 12/8/2023
7.2.0-beta-0007 396 12/8/2023
7.2.0-beta-0005 364 12/8/2023
7.1.0 501 10/23/2023
7.1.0-beta-0015 520 7/28/2023
7.1.0-beta-0013 594 6/28/2023
7.1.0-beta-0011 529 6/25/2023
7.1.0-beta-0006 573 6/24/2023
7.1.0-beta-0003 556 6/24/2023
7.1.0-beta-0002 506 6/24/2023
7.1.0-beta-0001 507 5/31/2023
7.0.3 537 9/25/2023
7.0.2 615 7/27/2023
7.0.1 576 7/26/2023
7.0.0 859 4/20/2023
7.0.0-beta-0010 594 4/5/2023
7.0.0-beta-0008 539 2/26/2023
7.0.0-beta-0005 554 2/12/2023
7.0.0-beta-0003 530 1/29/2023
7.0.0-beta-0001 559 1/29/2023
6.8.0 1,171 2/11/2023
6.8.0-beta-0003 527 2/11/2023
6.8.0-beta-0001 601 1/29/2023
6.7.2 847 1/29/2023
6.7.1 1,502 12/20/2022
6.7.0 848 12/17/2022
6.6.0 939 12/2/2022
6.5.4 1,044 11/23/2022
6.5.3 933 11/23/2022
6.5.2 922 11/14/2022
6.5.1 1,141 10/19/2022
6.5.0 1,132 10/3/2022
6.4.3 1,138 9/28/2022
6.4.2 1,116 9/26/2022
6.4.1 1,084 9/18/2022
6.4.0 1,109 8/31/2022
6.3.5 1,134 8/12/2022
6.3.4 1,128 7/25/2022
6.3.3 1,129 7/22/2022
6.3.2 1,139 7/11/2022
6.3.1 1,113 7/2/2022
6.3.0 1,146 7/1/2022
6.2.1 1,095 6/15/2022
6.2.0 1,149 6/2/2022
6.1.1 1,127 5/12/2022
6.1.0 1,043 5/1/2022
6.0.6 1,110 4/6/2022
6.0.5 1,125 4/4/2022
6.0.4 1,148 4/2/2022
6.0.3 475 4/1/2022