Searchlight 0.9.13

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

// Install Searchlight as a Cake Tool
#tool nuget:?package=Searchlight&version=0.9.13

Implements the Searchlight REST query language for CSharp.  The Searchlight language is database neutral and can support most database technologies.  Using Searchlight, you can provide a rich query language via your API, while still being completely safe from SQL injection attacks.  Searchlight enables you to use multiple database engines with the same functionality, and to transform queries using the in-memory abstract syntax tree prior to execution.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  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. 
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
1.0.2 271 9/10/2023
1.0.1 161 8/20/2023
1.0.0 157 7/13/2023
0.9.22 3,434 11/10/2022
0.9.21 2,574 3/23/2022
0.9.20 631 3/15/2022
0.9.19 504 3/9/2022
0.9.18 617 3/2/2022
0.9.17 720 1/18/2022
0.9.16 517 12/14/2021
0.9.15 321 12/14/2021
0.9.14 800 10/11/2021
0.9.13 347 9/30/2021
0.9.12 337 9/28/2021
0.9.11 385 9/24/2021
0.9.10 336 9/23/2021
0.9.9 335 9/23/2021
0.9.8 344 9/23/2021
0.9.7 346 9/22/2021
0.9.6 439 9/19/2021
0.9.5 306 9/19/2021
0.9.4 478 8/16/2021
0.9.3 399 7/21/2021
0.9.2 450 6/23/2021
0.9.1 386 6/19/2021
0.9.0 346 6/16/2021
0.8.9 628 5/4/2021
0.8.8 381 4/28/2021
0.8.7 353 4/28/2021
0.8.6 345 4/27/2021
0.8.5 383 4/20/2021
0.8.4 365 4/19/2021
0.8.3 309 4/16/2021
0.8.2 337 4/13/2021

# 0.9.13
September 29, 2021

* The LINQ Executor now returns `FetchResult<T>` with pagination information.
* Searchlight can now enforce a `MaximumPageSize` across all queries on the SearchlightEngine.  The goal is for implementors to decide how much data is too much
and be able to exercise control over API calls.
* `DefaultSort` is required for a searchlight model.  Omitting this value will throw an exception during construction of the SearchlightEngine.
This is necessary to ensure consistency of pagination.  Records not sorted will not paginate correctly.
* All Searchlight errors now include XMLDOCs explaining the problem.  A future improvement would be for errors to have a human-friendly string as well.