Welcome to Bangladesh Microsoft Technology Community Sign in | Join | Help

Monday, January 28, 2008 - Posts

LINQ - "Where" Extension Method

Here is simple LINQ example where I have used Extension methods "Where", to select the participants whose score is greater than 80. var participants =Competition.GetParticipants().Where(participant=> participant.Score > 80).OrderByDescending(participant
posted by Shahed | 0 Comments