光滑,如何将查询映射到继承表模型?

时间:2013-02-28 23:02:30

标签: scala scalaquery slick

Slick,如何将查询映射到继承表模型? 即,

我有表A,B,C A是“父母”表,B& C是“子”表 我想知道的是我应该如何使用光滑来模拟这一点,因此A将是抽象的并且B& C具体类型和查询A中的行将导致B或C对象

像JPA的InheritanceType.TABLE_PER_CLASS

2 个答案:

答案 0 :(得分:10)

我们需要做几件事。首先找到一种将层次结构映射到表的方法。在这种情况下,我使用存储类型的列。但你也可以使用其他一些技巧。

trait Base {
  val a: Int
  val b: String
}

case class ChildOne(val a: Int, val b: String, val c: String) extends Base
case class ChildTwo(val a: Int, val b: String, val d: Int) extends Base

class MyTable extends Table[Base]("SOME_TABLE") {
  def a = column[Int]("a")
  def b = column[String]("b")
  def c = column[String]("c", O.Nullable)
  def d = column[Int]("d", O.Nullable)
  def e = column[String]("model_type")

  //mapping based on model type column
  def * = a ~ b ~ c.? ~ d.? ~ e <> ({ t => t match {
    case (a, b, Some(c), _, "ChildOne") => ChildOne(a, b, c)
    case (a, b, _, Some(d), "ChildTwo") => ChildTwo(a, b, d)
  }}, {
    case ChildOne(a, b, c) => Some((a, b, Some(c), None, "ChildOne"))
    case ChildTwo(a, b, d) => Some((a, b, None, Some(d), "ChildTwo"))
  })
}
} 

现在确定您可以执行的特定子类型:

Query(new MyTable).foreach { 
     case ChildOne(a, b, c) => //childone
     case ChildTwo(a, b, d) => childtwo
}

答案 1 :(得分:0)

Slick不直接支持此功能。有些数据库可以帮助您继承,因此您应该能够获得接近期望效果的东西。

查看inheritance documentation in PostgreSQL