gpt4 book ai didi

scala - 什么是排除的 Squeryl 语法(即 != )?

转载 作者:行者123 更新时间:2023-12-04 05:51:07 26 4
gpt4 key购买 nike

做一个简单的 Squeryl 数据库查找,但试图排除一个值。我试过了:
j.id not jobExcludej.id != jobExclude
但是第一个触发编译器错误,第二个触发运行时错误。

整个交易:

from(DB.jobs)(j =>
where((j.startTime >= todayStart)
and (j.startTime <= todayEnd)
and (j.userId === userId)
and (j.teamId === teamId)
and (j.startOrder >= index)
and (j.id not jobExclude))
select (j)).toList

谢谢!

最佳答案

由 Squeryl 组提供:

不等于是 <>
所以从更大的角度来看:
(job.id <> jobExclude)
http://squeryl.org/functions.html

信用 https://groups.google.com/forum/?fromgroups#!topic/squeryl/Hw7iVyvLLNM

关于scala - 什么是排除的 Squeryl 语法(即 != )?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10037018/

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