I have a C# custom object list that I need to sort by two different variables one is a boolean and the other is a string. I can sort by either of the criteria, but
var sortResult = result.OrderBy(a => a.CheckedIn).ThenBy(a => a.LastName).ToList();