Searchlight 0.9.15
See the version list below for details.
dotnet add package Searchlight --version 0.9.15
NuGet\Install-Package Searchlight -Version 0.9.15
<PackageReference Include="Searchlight" Version="0.9.15" />
paket add Searchlight --version 0.9.15
#r "nuget: Searchlight, 0.9.15"
// Install Searchlight as a Cake Addin #addin nuget:?package=Searchlight&version=0.9.15 // Install Searchlight as a Cake Tool #tool nuget:?package=Searchlight&version=0.9.15
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.13)
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 | 318 | 9/10/2023 |
1.0.1 | 191 | 8/20/2023 |
1.0.0 | 192 | 7/13/2023 |
0.9.22 | 3,633 | 11/10/2022 |
0.9.21 | 2,621 | 3/23/2022 |
0.9.20 | 662 | 3/15/2022 |
0.9.19 | 535 | 3/9/2022 |
0.9.18 | 652 | 3/2/2022 |
0.9.17 | 755 | 1/18/2022 |
0.9.16 | 549 | 12/14/2021 |
0.9.15 | 352 | 12/14/2021 |
0.9.14 | 836 | 10/11/2021 |
0.9.13 | 379 | 9/30/2021 |
0.9.12 | 366 | 9/28/2021 |
0.9.11 | 418 | 9/24/2021 |
0.9.10 | 367 | 9/23/2021 |
0.9.9 | 367 | 9/23/2021 |
0.9.8 | 375 | 9/23/2021 |
0.9.7 | 376 | 9/22/2021 |
0.9.6 | 471 | 9/19/2021 |
0.9.5 | 336 | 9/19/2021 |
0.9.4 | 509 | 8/16/2021 |
0.9.3 | 436 | 7/21/2021 |
0.9.2 | 468 | 6/23/2021 |
0.9.1 | 416 | 6/19/2021 |
0.9.0 | 374 | 6/16/2021 |
0.8.9 | 660 | 5/4/2021 |
0.8.8 | 417 | 4/28/2021 |
0.8.7 | 384 | 4/28/2021 |
0.8.6 | 377 | 4/27/2021 |
0.8.5 | 415 | 4/20/2021 |
0.8.4 | 394 | 4/19/2021 |
0.8.3 | 342 | 4/16/2021 |
0.8.2 | 367 | 4/13/2021 |
# 0.9.15
December 14, 2021
Changes to engine-level configuration values.
* Maximum parameter count and maximum page size values can be configured at the engine level.
* Added support for SQL Server performance tuning features: NOCOUNT, READ UNCOMMITTED, and WITH NOLOCK.
* NOCOUNT and READ UNCOMMITTED are enabled by default. Since Searchlight queries do not rely on "records affected", and since searchlight is a nondestructive query system, these options will reduce contention and enable higher performance queries. If you require precision in your query results, you can disable READ UNCOMMITTED at the engine level.
* Began work on Searchlight for MongoDB. Expect more soon!