为什么link中明明每个结果都是flase,any还是true呢?

为什么link中明明每个结果都是flase,any还是true呢?

any()相当于
count() > 0
any(x => x)这样才是是否存在。
any(x => x)相当于
where(x => x).any()