做一个简单的 Squeryl 数据库查找,但试图排除一个值。我试过了:
j.id not jobExclude
和j.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
谢谢!