I am trying to use LINQ to create a Dictionary> from a List. I can get this to work using \"
Dictionary>
List
Dictionary> myDictionary = ListOfCustomObjects .GroupBy(o => o.PropertyName) .ToDictionary(g => g.Key, g => g.ToList());