BlazarTech.QueryableValues.SqlServer
5.4.0
See the version list below for details.
dotnet add package BlazarTech.QueryableValues.SqlServer --version 5.4.0
NuGet\Install-Package BlazarTech.QueryableValues.SqlServer -Version 5.4.0
<PackageReference Include="BlazarTech.QueryableValues.SqlServer" Version="5.4.0" />
paket add BlazarTech.QueryableValues.SqlServer --version 5.4.0
#r "nuget: BlazarTech.QueryableValues.SqlServer, 5.4.0"
// Install BlazarTech.QueryableValues.SqlServer as a Cake Addin #addin nuget:?package=BlazarTech.QueryableValues.SqlServer&version=5.4.0 // Install BlazarTech.QueryableValues.SqlServer as a Cake Tool #tool nuget:?package=BlazarTech.QueryableValues.SqlServer&version=5.4.0
QueryableValues
This library allows you to efficiently compose an IEnumerable<T> in your Entity Framework Core queries when using the SQL Server Database Provider. This is accomplished by using the AsQueryableValues
extension method available on the DbContext class. Everything is evaluated on the server with a single round trip, in a way that preserves the query's execution plan, even when the values behind the IEnumerable<T> are changed on subsequent executions.
The supported types for T
are:
- Simple Type: Byte, Int16, Int32, Int64, Decimal, Single, Double, DateTime, DateTimeOffset, Guid, Char, and String.
- Complex Type:
- Can be an anonymous type.
- Can be a user-defined class or struct with read/write properties and a public constructor.
- Must have one or more simple type properties, including Boolean.
For a detailed explanation of the problem solved by QueryableValues, please continue reading here.
When Should You Use It?
The AsQueryableValues
extension method is intended for queries that are dependent upon a non-constant sequence of external values. In such cases, the underlying SQL query will be efficient on subsequent executions.
It provides a solution to the following long standing EF Core issue and enables other currently unsupported scenarios; like the ability to efficiently create joins with in-memory data.
Your Support is Appreciated!
If you feel that this solution has provided you some value, please consider buying me a ☕.
Your ⭐ on this repository also helps! Thanks! 🖖🙂
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 by which it's supported (e.g. 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.4.0 |
5.x | Install-Package BlazarTech.QueryableValues.SqlServer -Version 5.4.0 |
6.x | Install-Package BlazarTech.QueryableValues.SqlServer -Version 6.4.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 You 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 for it to appear as a method of your DbContext instance:
using BlazarTech.QueryableValues;
Below are a few examples composing a query using the values provided by an IEnumerable<T>.
Simple Type Examples
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
};
Complex Type Example
// Performance Tip:
// If your IEnumerable<T> item type (T) has many properties, project only
// the ones you need to a new variable and use it in your query.
var projectedItems = items.Select(i => new { i.CategoryId, i.ColorName });
var myQuery =
from p in dbContext.Product
join pi in dbContext.AsQueryableValues(projectedItems) on new { p.CategoryId, p.ColorName } equals new { pi.CategoryId, pi.ColorName }
select new
{
p.ProductId,
p.Description
};
About Complex Types
⚠️ All the data provided by this type is transmitted to the server; therefore, ensure that it only contains the properties you need for your query. Not following this recommendation will degrade the query's performance.
⚠️ There is a limit of up to 10 properties for any given simple type (e.g. cannot have more than 10 Int32 properties). Exceeding that limit will cause an exception and may also suggest that you should rethink your strategy.
Do You Want To Know More? 📚
Please take a look at the repository.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. 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. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- Microsoft.EntityFrameworkCore.SqlServer (>= 5.0.0 && < 6.0.0)
- Microsoft.Extensions.ObjectPool (>= 6.0.6)
-
net6.0
- Microsoft.EntityFrameworkCore.SqlServer (>= 5.0.0 && < 6.0.0)
- Microsoft.Extensions.ObjectPool (>= 6.0.6)
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,666 | 2/8/2024 |
8.1.0 | 9,161 | 12/7/2023 |
8.0.0 | 1,820 | 11/26/2023 |
7.4.3 | 85,639 | 2/8/2024 |
7.4.2 | 2,021 | 12/7/2023 |
7.4.1 | 6,214 | 11/26/2023 |
7.4.0 | 55,767 | 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,084 | 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 |