First Im a noob in LINQ ! Then, the thing is that I have a Collection that :
- either does not contain my ID (string)
- or contains it ONLY once
I wanted to use Where but I don't like the if instructions that I have to do... so here is my code :
if (MyCollection.Any(rm => rm.BaseName == rbName))
{
var tmp = MyCollection.First(rm => rm.BaseName == rbName);
}
This works but I really feel like this is not the way I should do it with LINQ... Any suggestion ?

FirstOrDefault– V4Vendetta Jan 10 '12 at 9:14