yv989c / BlazarTech.QueryableValues

This library allows you to efficiently compose an IEnumerable<T> in your Entity Framework Core queries when using the SQL Server database provider.
Other
91 stars 6 forks source link

UseDeferredEnumeration #26

Closed yv989c closed 1 year ago

yv989c commented 1 year ago

Configuration example:

builder.UseQueryableValues(options =>
{
    options.UseDeferredEnumeration(false);
})

Provides a workaround for #25 .