Searchlight 0.9.8
See the version list below for details.
dotnet add package Searchlight --version 0.9.8
NuGet\Install-Package Searchlight -Version 0.9.8
<PackageReference Include="Searchlight" Version="0.9.8" />
paket add Searchlight --version 0.9.8
#r "nuget: Searchlight, 0.9.8"
// Install Searchlight as a Cake Addin #addin nuget:?package=Searchlight&version=0.9.8 // Install Searchlight as a Cake Tool #tool nuget:?package=Searchlight&version=0.9.8
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 | 312 | 9/10/2023 |
1.0.1 | 187 | 8/20/2023 |
1.0.0 | 187 | 7/13/2023 |
0.9.22 | 3,592 | 11/10/2022 |
0.9.21 | 2,613 | 3/23/2022 |
0.9.20 | 655 | 3/15/2022 |
0.9.19 | 529 | 3/9/2022 |
0.9.18 | 646 | 3/2/2022 |
0.9.17 | 749 | 1/18/2022 |
0.9.16 | 543 | 12/14/2021 |
0.9.15 | 346 | 12/14/2021 |
0.9.14 | 828 | 10/11/2021 |
0.9.13 | 373 | 9/30/2021 |
0.9.12 | 359 | 9/28/2021 |
0.9.11 | 412 | 9/24/2021 |
0.9.10 | 361 | 9/23/2021 |
0.9.9 | 361 | 9/23/2021 |
0.9.8 | 369 | 9/23/2021 |
0.9.7 | 370 | 9/22/2021 |
0.9.6 | 463 | 9/19/2021 |
0.9.5 | 328 | 9/19/2021 |
0.9.4 | 503 | 8/16/2021 |
0.9.3 | 430 | 7/21/2021 |
0.9.2 | 462 | 6/23/2021 |
0.9.1 | 410 | 6/19/2021 |
0.9.0 | 368 | 6/16/2021 |
0.8.9 | 654 | 5/4/2021 |
0.8.8 | 411 | 4/28/2021 |
0.8.7 | 377 | 4/28/2021 |
0.8.6 | 369 | 4/27/2021 |
0.8.5 | 407 | 4/20/2021 |
0.8.4 | 388 | 4/19/2021 |
0.8.3 | 336 | 4/16/2021 |
0.8.2 | 362 | 4/13/2021 |
# 0.9.8
September 22, 2021
Searchlight queries now support date shorthand: TODAY, TOMORROW, YESTERDAY can be used as values for date criteria.
This means you can now write queries such as `date between yesterday and tomorrow`. We may add more support for
date constants in the future.
* LINQ executor sorts results according to the same logic as the SQL executor
* LINQ executor works correctly if you send in a null or filter statement
* Recognizes "ascending" and "descending" in addition to "asc" and "desc" for sort orders
* Removed references to Dapper, which is no longer required to compile
* Added reference to LINQ Dynamic Core