I have a class structure:
class MyEx{
public int Prop1;
public int Prop2;
public int Prop3
}
Prop1 and Prop 2 are always the same, Prop3 is changing. this class, which I want to extract from the longer end, should be something like
select new MyEx { Prop1=something;
Prop2= something2;
Prop3=something3;
}
the problem is that something3 is not unique, so I would like to apply the Distinct to thw query to get the class above with different Prop3 values. But this does not seem to work. Any ideas why? Thanks
Elena source
share