Searchlight 0.9.13
See the version list below for details.
dotnet add package Searchlight --version 0.9.13
NuGet\Install-Package Searchlight -Version 0.9.13
<PackageReference Include="Searchlight" Version="0.9.13" />
paket add Searchlight --version 0.9.13
#r "nuget: Searchlight, 0.9.13"
// 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 | Versions 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. |
-
net5.0
- System.Linq.Dynamic.Core (>= 1.2.12)
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 | 314 | 9/10/2023 |
1.0.1 | 189 | 8/20/2023 |
1.0.0 | 189 | 7/13/2023 |
0.9.22 | 3,607 | 11/10/2022 |
0.9.21 | 2,615 | 3/23/2022 |
0.9.20 | 657 | 3/15/2022 |
0.9.19 | 531 | 3/9/2022 |
0.9.18 | 648 | 3/2/2022 |
0.9.17 | 751 | 1/18/2022 |
0.9.16 | 545 | 12/14/2021 |
0.9.15 | 348 | 12/14/2021 |
0.9.14 | 832 | 10/11/2021 |
0.9.13 | 375 | 9/30/2021 |
0.9.12 | 362 | 9/28/2021 |
0.9.11 | 414 | 9/24/2021 |
0.9.10 | 363 | 9/23/2021 |
0.9.9 | 363 | 9/23/2021 |
0.9.8 | 371 | 9/23/2021 |
0.9.7 | 372 | 9/22/2021 |
0.9.6 | 465 | 9/19/2021 |
0.9.5 | 332 | 9/19/2021 |
0.9.4 | 505 | 8/16/2021 |
0.9.3 | 432 | 7/21/2021 |
0.9.2 | 464 | 6/23/2021 |
0.9.1 | 412 | 6/19/2021 |
0.9.0 | 370 | 6/16/2021 |
0.8.9 | 656 | 5/4/2021 |
0.8.8 | 413 | 4/28/2021 |
0.8.7 | 379 | 4/28/2021 |
0.8.6 | 371 | 4/27/2021 |
0.8.5 | 411 | 4/20/2021 |
0.8.4 | 390 | 4/19/2021 |
0.8.3 | 338 | 4/16/2021 |
0.8.2 | 364 | 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.