3

我正在使用出色的 ScalaQuery,并且我正在尝试为常见操作创建一个通用存储库,但我无法接受它。希望有人可以提供帮助。

我有例如以下结构

abstract class Record(id : Int) 
class Product(id: Int,name:String,price : Int) extends Record(id)
class Order(id: Int,name:String,amount: Int)  extends Record(id)

以及用于产品和订单的拖车表。现在我想要通用存储库:

trait RecordRepository[T <: ExtendedTable[O]]{
     findById(id:Int) : Option[T]
     findAll() : List[T]
     save(entity:T)
     ...
}      

class ProductRepository extends RecordRepository[Product]
class ProductRepository extends RecordRepository[Order]

object ProductTable extends ExtendedTable[(Long, String, Int)]("product") {
  def id = column[Long]("id", O.PrimaryKey, O.AutoInc) 
  def name = column[String]("name", O.NotNull) 
  def price = column[Int]("price", O.NotNull) 
  def * = id ~ name ~ price 
} 
object OrderTable extends ExtendedTable[(Long, String, Int)]("order") {
  def id = column[Long]("id", O.PrimaryKey, O.AutoInc) 
  def name = column[String]("name", O.NotNull)
  def amount = column[Int]("price", O.NotNull) 
  def * = id ~ name ~ amount
}

我无法使用 for 理解来实现查询,因为描述表的元组在编译时在特征(或抽象类)RecordRepository 中是未知的。

提前致谢!

4

1 回答 1

1

@singy 好的,很好,以为您将(映射)遗漏了(您应该编辑您的答案,而不是将映射放在评论中,顺便说一句)。

尝试以下操作:
1)更改class Productcase class Product
2)替换ExtendedTable[(Long, String, Int)]为,ExtendedTable[Product]

于 2012-04-22T20:02:52.780 回答