Hi all,

I have been learning how to sort a list using lambda functions
Code:
excessPop.Sort(Function(f1, f2) f1.ID.CompareTo(f2.ID))
I am however struggling to sort a list using 2 parameters within a lambda function. The properties within my list that i need to sort by are Category and then by Cost.

Any pointers for how to do this?