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 varies. this class I want to retrieve from a longer the 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 a Distinct to thw query in order to obtain the class above with distinct Prop3 values. But this does not seem to work. Any ideas why? Thanks