gpt4 book ai didi

scala - 根据 Slick 中的 Id 选择单行

转载 作者:行者123 更新时间:2023-12-04 00:10:21 27 4
gpt4 key购买 nike

我想根据 Id 从用户查询单行。我有以下虚拟代码

case class User(
id: Option[Int],
name: String
}

object Users extends Table[User]("user") {
def id = column[Int]("id", O.PrimaryKey, O.AutoInc)
def name = column[String]("name")
def * = id ~ name <>(User, User.unapply _)

def findById(userId: Int)(implicit session: Session): Option[User] = {
val user = this.map { e => e }.where(u => u.id === userId).take(1)
val usrList = user.list
if (usrList.isEmpty) None
else Some(usrList(0))
}
}

在我看来 findById查询单个列是一种矫枉过正,因为 Id 是标准主键。有人知道更好的方法吗?请注意,我正在使用 Play! 2.1.0

最佳答案

使用 headOption Slick 3.* 中的方法:

  def findById(userId: Int): Future[Option[User]] ={
db.run(Users.filter(_.id === userId).result.headOption)
}

关于scala - 根据 Slick 中的 Id 选择单行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16461260/

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