New to LINQ and trying to figure out how to exclude an item from a list. I have a list of names and their position level. Which looks like
Name ID Level
aaa 123 0
bbb 122 1
ccc 222 2
ddd 223 3
What I'm trying to do is figure out a way to exclude the record with the highest level. I'm refactoring some code that was using a for loop to check for this and I'm having a hard time figuring out how to mirror that.
Levelvalues different and unique?