Skip to content

Maintenance Release

Compare
Choose a tag to compare
@yv989c yv989c released this 14 Mar 04:46
· 78 commits to main since this release
e5bf791
  • Added the UseDeferredEnumeration option that allows you to disable deferred enumeration. By disabling this feature you will be able to use the ToQueryString method provided by EF 5 onwards. If possible, I recommend leaving this feature enabled (default). For details please refer to the UseDeferredEnumeration method documentation.

Configuration example:

builder.UseQueryableValues(options =>
{
    // Disables deferred enumeration.
    options.UseDeferredEnumeration(false);
})

Provides a workaround for #25 .