I have a generic collection of type MyImageClass, and MyImageClass has an boolean property \"IsProfile\". I want to sort this generic list which IsProfile == true stands at the
How about:
estate.Images.OrderByDescending(est => est.IsProfile).ToList()
This will order the Images in descending order by the IsProfile Property and then create a new List from the result.