I need to sort a list based on a property (IsValid = true) with all true items on top and the rest below it.Since I'm using compact framework, I can't use OrderBy. Can anyone post me LINQ query to get the list ?
List<Record> records = GetRecords();