我试图使用Slick的映射投影(版本1.0.0-RC1)。但是下面的代码遵循网站上的示例(因为似乎没有任何适当的文档也没有可用的scaladocs)会产生类型错误:
object PDFDocs extends Table[(String,Option[String],String)]("DOCUMENTS"){
def id = column[String]("ID", O.PrimaryKey)
def title = column[Option[String]]("TITLE")
def tags = column[String]("TAGS")
def * = (id ~ title ~ tags).<>[PDFDocument](PDFDocument,PDFDocument unapply _)
}
case class PDFDocument(name: String,
title: Option[String],
tags: String)
以下是产生的错误:
error: type mismatch;
found: scala.slick.lifted.MappedProjection[docman.rdb.PDFDocument,(String,Option[String], String)]
required: scala.slick.lifted.ColumnBase[(String, Option[String], String)]
def * = (id ~ title ~ tags).<>[PDFDocument](PDFDocument,PDFDocument unapply _)
答案 0 :(得分:9)
离开我的头顶,不应该是第一行:
object PDFDocs extends Table[PDFDocument]("DOCUMENTS") {