0.9.4
Breaking changes:
ToAsyncEnumerable()
in Query and Scan now returnsIAsyncEnumerable<T>
instead ofIAsyncEnumerable<IReadOnlyList<T>>
whereT
is your entity or projection. Old behavior is now accessible throughToPagedAsyncEnumerable()
method. Same change applies to Scan'sToParallelAsyncEnumerable(int totalSegments)
(#138)
Bug fixes:
- Explicit converters for nullable value types do not crash anymore (#137)