gpt4 book ai didi

自定义用户类型(枚举)的 Scala 光滑查询比较给出错误

转载 作者:行者123 更新时间:2023-12-04 03:07:48 24 4
gpt4 key购买 nike

我正在尝试将 Slick 与具有用户定义类型(枚举)的列一起使用。一切正常,直到我尝试编写使用该列的查询。

编译时出现以下方法错误:

def findCredentials(credentialType:CredentialType)(implicit session: Session): List[Credential] = {
val query = for {
c <- credentials if c.credentialType === credentialType
} yield c
query.list
}

这是错误:
[error] ... value === is not a member of         
scala.slick.lifted.Column[models.domain.enumeration.CredentialType.CredentialType]
[error] c <- credentials if c.credentialType === credentialType

枚举代​​码在这里:
object CredentialType extends Enumeration {
type CredentialType = Value
val Password, Token = Value
}

表定义在这里:
case class Credential(id: Long, userId: Long, credentialType: CredentialType)

class Credentials(tag: Tag) extends Table[Credential](tag, "credential") {
implicit val credentialTypeColumnType = MappedColumnType.base[CredentialType, String](
{ c => c.toString },
{ s => CredentialType.withName(s)}
)
def id = column[Long]("id", O.PrimaryKey, O.AutoInc)
def userId = column[Long]("user_id")
def credentialType = column[CredentialType]("type")
def * = (id, userId, credentialType) <> (Credential.tupled, Credential.unapply)
}

我在谷歌上搜索了一些其他问题,但它们要么不适合 2.x.x,要么不涉及枚举类型。

我的问题是,我是否需要在某处为枚举类型定义 === 运算符,或者是否有更简单的方法使用我缺少的当前流畅的 2.0.0 功能?

谢谢

最佳答案

我认为在使用 === 运算符时,您需要在范围内使用隐式类型映射器。你应该把

implicit val credentialTypeColumnType = MappedColumnType.base[CredentialType, String](
{ c => c.toString },
{ s => CredentialType.withName(s)}
)

创建查询时可以看到的地方。

关于自定义用户类型(枚举)的 Scala 光滑查询比较给出错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21655001/

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