我正在尝试按自定义字段更新行,或者如果表中不存在行,则插入新行。我可以通过一个查询使用光滑的3.0来完成吗?
通过2个这样的查询完成。
Await.result(db.run(myQ.filter(_.firstUserId === my.firstUserId).result), Duration.Inf).headOption match {
case Some(l) => update(myQ.update(l.updateStatus(my.status)))
case None => Await.result(db.run(myQ += my), Duration.Inf)
}
BR!
答案 0 :(得分:-1)
在Slick 3.0中使用功能insertOrUpdate
,请参阅http://slick.typesafe.com/doc/3.0.0/api/#slick.driver.JdbcActionComponent$SimpleInsertActionComposer