sebastienros / yessql

A .NET document database working on any RDBMS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ReduceIndex single key check is wrong

sebastienros opened this issue · comments

https://github.com/sebastienros/yessql/blob/main/src/YesSql.Core/Session.cs#L1108-L1114

SingleOrDefault can throw an exception is the key is not unique.

Example: group by a key and store values with different cases on the same key. The db query will return all the values.

OrchardCMS/OrchardCore#12989