检查某个值是否不在 Application Insights 查询语言的列表中?

Check if a value is not in a list in Application Insights Query Language?

是否有更短的方法来检查 属性 是否不在给定列表中:

customEvents 
| where user_Id != 123
    and user_Id != 234
    and user_Id != 345

您可以使用 !in operator,代码如下:

customEvents 
| where user_Id !in (123,234,345)