I have a list of object which all expose a property of type IList. Now I want to group this list by the values of that list. So let say for example:
OB1: Property is A, B, C
OB2: Property is D, C, E
OB3: Property is B, E, C
由于产出,我不得不这样做。
A: OB1
B: OB1, OB3
C: OB1, OB2, OB3
D: OB2
E: OB2, OB3
我想到的是一条方便的路程,来解决这个问题,但是如果能够做到这一点,那就找不到任何参考。 其中,我可以 lo......但是,如果有可能的话,我很奇怪。
增 编