gpt4 book ai didi

F# 查询 "doesn' t 包含”

转载 作者:行者123 更新时间:2023-12-04 03:06:14 29 4
gpt4 key购买 nike

当某项包含在列表中时,有一个查询要搜索,但当某项不在列表中时,则没有查询。

此查询查找在给定列表 cdiffnums 中没有 ContactNumcustomer 对象。我该怎么做才能仅返回此列表中没有ContactNum 的客户?

let q =
query {
for c in dc.Customers do
where (query { for n in cdiffnums do contains c.ContactNum })
select c
}

最佳答案

我的 F# 生锈了,但是你试过了吗:

let q =
query {
for c in dc.Customers do
where (not (query { for n in cdiffnums do contains c.ContactNum }))
select c
}

关于F# 查询 "doesn' t 包含”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12023349/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com