Using .NET LINQ, I would like to find records (Name) that start with a PID equal to 0 or 1. But if the name has both, I only need 0. In the following:
PID Name 0 P1 1 P1 1 P3 0 P4 0 P5 1 P5
I will return the lines:
0 P1 1 P3 0 P4 0 P5
PID values ββcan increase to 10. Any suggestions on how this can be done?
4thSpace
source share