BlazarTech.QueryableValues.SqlServer
6.1.0
See the version list below for details.
dotnet add package BlazarTech.QueryableValues.SqlServer --version 6.1.0
NuGet\Install-Package BlazarTech.QueryableValues.SqlServer -Version 6.1.0
<PackageReference Include="BlazarTech.QueryableValues.SqlServer" Version="6.1.0" />
paket add BlazarTech.QueryableValues.SqlServer --version 6.1.0
#r "nuget: BlazarTech.QueryableValues.SqlServer, 6.1.0"
// Install BlazarTech.QueryableValues.SqlServer as a Cake Addin #addin nuget:?package=BlazarTech.QueryableValues.SqlServer&version=6.1.0 // Install BlazarTech.QueryableValues.SqlServer as a Cake Tool #tool nuget:?package=BlazarTech.QueryableValues.SqlServer&version=6.1.0
QueryableValues
This library improves the efficiency of some types of queries in Entity Framework Core when using the SQL Server Database Provider.
The provided AsQueryableValues
extension method on the DbContext class allows us to efficiently compose an IEnumerable<T> in our queries when it consist of non-constant values. It returns an IQueryable<T> that in the context of a query can be treated as any other entity in our DbContext. Everything is evaluated on the server.
The supported types for T
are: Int32
, Int64
, Decimal
, Double
, DateTime
, DateTimeOffset
, Guid
, and String
.
For a detailed explanation, please continue reading here.
When Should I Use It?
The AsQueryableValues
extension method is intended for queries that are dependent on a non-constant sequence of external values. In this case, the underline SQL query will be efficient on subsequent executions.
Getting Started
Installation
QueryableValues is distributed as a NuGet Package. The major version number of this library is aligned with the version of Entity Framework Core that's supported by it; for example, if you are using EF Core 5, then you must use version 5 of QueryableValues.
Please choose the appropriate command below to install it using the NuGet Package Manager Console window in Visual Studio:
EF Core | Command |
---|---|
3.x | Install-Package BlazarTech.QueryableValues.SqlServer -Version 3.1.0 |
5.x | Install-Package BlazarTech.QueryableValues.SqlServer -Version 5.1.0 |
6.x | Install-Package BlazarTech.QueryableValues.SqlServer -Version 6.1.0 |
Configuration
Look for the place in your code where you are setting up your DbContext and calling the UseSqlServer extension method, then use a lambda expression to access the SqlServerDbContextOptionsBuilder
provided by it. It is on this builder that you must call the UseQueryableValues
extension method, as shown in the following simplified examples:
When using the OnConfiguring
method inside your DbContext:
using BlazarTech.QueryableValues;
public class MyDbContext : DbContext
{
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
optionsBuilder.UseSqlServer(
"MyConnectionString",
sqlServerOptionsBuilder =>
{
sqlServerOptionsBuilder.UseQueryableValues();
}
);
}
}
When setting up the DbContext at registration time using dependency injection:
using BlazarTech.QueryableValues;
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddDbContext<MyDbContext>(optionsBuilder => {
optionsBuilder.UseSqlServer(
"MyConnectionString",
sqlServerOptionsBuilder =>
{
sqlServerOptionsBuilder.UseQueryableValues();
}
);
});
}
}
How Do I Use It?
The AsQueryableValues
extension method is provided by the BlazarTech.QueryableValues
namespace, therefore, you must add the following using
directive to your source code file in order for it to appear as a method of your DbContext instance.
using BlazarTech.QueryableValues;
Below are two patterns that you can use to retrieve data from an entity based on values provided by an IEnumerable<T>.
Using the Contains LINQ method
// Sample values.
IEnumerable<int> values = Enumerable.Range(1, 10);
// Example #1 (LINQ method syntax)
var myQuery1 = dbContext.MyEntities
.Where(i => dbContext
.AsQueryableValues(values)
.Contains(i.MyEntityID)
)
.Select(i => new
{
i.MyEntityID,
i.PropA
});
// Example #2 (LINQ query syntax)
var myQuery2 =
from i in dbContext.MyEntities
where dbContext
.AsQueryableValues(values)
.Contains(i.MyEntityID)
select new
{
i.MyEntityID,
i.PropA
});
Using the Join LINQ method
// Sample values.
IEnumerable<int> values = Enumerable.Range(1, 10);
// Example #1 (LINQ method syntax)
var myQuery1 = dbContext.MyEntities
.Join(
dbContext.AsQueryableValues(values),
i => i.MyEntityID,
v => v,
(i, v) => new
{
i.MyEntityID,
i.PropA
}
);
// Example #2 (LINQ query syntax)
var myQuery2 =
from i in dbContext.MyEntities
join v in dbContext.AsQueryableValues(values) on i.MyEntityID equals v
select new
{
i.MyEntityID,
i.PropA
});
Do You Want to Know More? 📚
Please take a look at the repository here.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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. |
-
net6.0
- Microsoft.EntityFrameworkCore.SqlServer (>= 6.0.0)
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 |
---|---|---|
8.1.1 | 53,674 | 2/8/2024 |
8.1.0 | 9,162 | 12/7/2023 |
8.0.0 | 1,820 | 11/26/2023 |
7.4.3 | 85,645 | 2/8/2024 |
7.4.2 | 2,023 | 12/7/2023 |
7.4.1 | 6,214 | 11/26/2023 |
7.4.0 | 55,770 | 6/25/2023 |
7.3.0 | 3,883 | 5/20/2023 |
7.2.0 | 3,730 | 3/27/2023 |
7.1.0 | 2,309 | 3/14/2023 |
7.0.0 | 16,085 | 11/13/2022 |
7.0.0-preview.2 | 179 | 9/3/2022 |
7.0.0-preview.1 | 144 | 8/7/2022 |
6.9.3 | 2,056 | 2/8/2024 |
6.9.2 | 12,805 | 12/7/2023 |
6.9.1 | 157 | 11/26/2023 |
6.9.0 | 12,804 | 6/25/2023 |
6.8.0 | 101,130 | 5/20/2023 |
6.7.0 | 3,599 | 3/27/2023 |
6.6.0 | 591 | 3/14/2023 |
6.5.0 | 94,308 | 9/3/2022 |
6.4.0 | 7,189 | 7/14/2022 |
6.3.0 | 11,567 | 1/4/2022 |
6.2.0 | 371 | 12/27/2021 |
6.1.0 | 349 | 12/9/2021 |
6.0.0 | 1,051 | 12/6/2021 |
5.9.3 | 146 | 2/8/2024 |
5.9.2 | 158 | 12/7/2023 |
5.9.1 | 140 | 11/26/2023 |
5.9.0 | 184 | 6/25/2023 |
5.8.0 | 181 | 5/20/2023 |
5.7.0 | 246 | 3/27/2023 |
5.6.0 | 322 | 3/14/2023 |
5.5.0 | 1,760 | 9/3/2022 |
5.4.0 | 1,088 | 7/14/2022 |
5.3.0 | 31,818 | 1/4/2022 |
5.2.0 | 349 | 12/27/2021 |
5.1.0 | 354 | 12/9/2021 |
5.0.0 | 347 | 12/6/2021 |
3.9.3 | 120 | 2/8/2024 |
3.9.2 | 144 | 12/7/2023 |
3.9.1 | 150 | 11/26/2023 |
3.9.0 | 258 | 6/25/2023 |
3.8.0 | 186 | 5/20/2023 |
3.7.0 | 261 | 3/27/2023 |
3.6.0 | 267 | 3/14/2023 |
3.5.0 | 459 | 9/3/2022 |
3.4.0 | 488 | 7/14/2022 |
3.3.0 | 1,450 | 1/4/2022 |
3.2.0 | 299 | 12/27/2021 |
3.1.0 | 336 | 12/9/2021 |
3.0.0 | 426 | 12/6/2021 |