Enumerable.Where中的参数

我想搜索所有为空或不为空的记录。我可以这样做(示例代码):

public ICollection<Employees> SearchForPhoneNumberNull()
{
    return collection.Where(x => x.PhoneNumber == null);
}
public ICollection<Employees> SearchForPhoneNumberNotNull()
{
    return collection.Where(x => x.PhoneNumber != null);
}

Can i somehow connect these two methods, and for example send some variable that will decide is it != or ==?