gpt4 book ai didi

scala - 光滑的左外连接获取整个连接行作为选项

转载 作者:行者123 更新时间:2023-12-04 01:54:38 26 4
gpt4 key购买 nike

我的加入看起来像这样:

def byIdWithImage = for {
userId <- Parameters[Long]
(user, image) <- Users leftJoin RemoteImages on (_.imageId === _.id) if user.id === userId
} yield (user, image)

但是当 user.imageId 为 null 时,slick 在运行时失败

[SlickException: Read NULL value for column RemoteImage.url]



将产量更改为
} yield (user, image.?)

给了我一个编译时异常,它只适用于单个列

could not find implicit value for evidence parameter of type scala.slick.lifted.TypeMapper[image.type]



会有不同的方式来完成我在这里尝试做的事情吗? (在单个查询中)

最佳答案

使用下面的代码,你可以把它写成:产量(用户,图像。也许)

case class RemoteImage(id: Long, url: URL)

class RemoteImages extends Table[RemoteImage]("RemoteImage") {
def id = column[Long]("id", O.PrimaryKey, O.AutoInc)
def url = column[URL]("url", O.NotNull)
def * = id.? ~ url <> (RemoteImage.apply _, RemoteImage.unapply _)

def maybe = id.? ~ url.? <> (applyMaybe,unapplyBlank)

val unapplyBlank = (c:Option[RemoteImage])=>None

val applyMaybe = (t: (Option[Long],Option[URL])) => t match {
case (Some(id),Some(url)) => Some(RemoteImage(Some(id),url))
case _ => None
}
}

关于scala - 光滑的左外连接获取整个连接行作为选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14990365/

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