The documentation comes from the Markdown files in the source code, so is always up-to-date but available only in English. Enjoy!
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;}
(...)
}
© Signum Software. All Rights Reserved.
Powered by Signum Framework