Maintenance Release
- Added the
UseDeferredEnumeration
option that allows you to disable deferred enumeration. By disabling this feature you will be able to use theToQueryString
method provided by EF 5 onwards. If possible, I recommend leaving this feature enabled (default). For details please refer to theUseDeferredEnumeration
method documentation.
Configuration example:
builder.UseQueryableValues(options =>
{
// Disables deferred enumeration.
options.UseDeferredEnumeration(false);
})
Provides a workaround for #25 .