how can i replace Any for All method and vice versa linq in csharp

Code Example - how can i replace Any for All method and vice versa linq in csharp

                
                        var results = employees.GroupBy(e => e.Department).
    Select(d => new { Department = d.Key, Size = d.Count()});