Signum Documentation

The documentation comes from the Markdown files in the source code, so is always up-to-date but available only in English. Enjoy!

Paste your Framework commit SHA

Gruping

Out implementation of LINQ's IGrouping<K,T>, and the one that uses Signum.Engine LINQ Provider.

It inherits from List<T> so if you feel like hacking with undocumented APIs, you can downcast and add some elements more if you want ;)

public class Grouping<K, T> : List<T>, IGrouping<K, T>
{
    public Grouping(K key)
    public Grouping(K key, IEnumerable<T> values)
    public K Key {get;}
    (...)
}