光滑的多对一映射

时间:2018-09-09 18:31:46

标签: scala slick

我有3个表,被定义为3个案例类。卖方和买方与地址都有一对多的关系。有没有办法我可以在地址表中使用一个外键指向卖方和买方表,而不是使用两个外键?我不确定如何编写映射。这是我得到的:

case class Seller(id: Long, name: String)
case class Buyer(id: Long, name: String)
case class Address(id: Long, street: String, city: String, userId: Long)

class SellerTableDef(tag: Tag) extends Table[Seller](tag, "seller") {
  def id = column[Long]("id", O.PrimaryKey, O.AutoInc)
  def name = column[String]("name")
  override def * = (id, name) <> (Seller.tupled, Seller.unapply)
}

class BuyerTableDef(tag: Tag) extends Table[Seller](tag, "buyer") {
  def id = column[Long]("id", O.PrimaryKey, O.AutoInc)
  def name = column[String]("name")
  override def * = (id, name) <> (Buyer.tupled, Buyer.unapply)
}

class AddressTableDef(tag: Tag) extends Table[Address](tag, "address") {
  def id = column[Long]("id", O.PrimaryKey, O.AutoInc)
  def street = column[String]("street")
  def city = column[String]("city")
  def userId = column[Long]("user_id")

  //!!!Can I use one foreign key to point to both the Seller and the Buyer table?!!! 
  def user = foreignKey("user_FK", userId, ???)(_.id)
}

非常感谢。

1 个答案:

答案 0 :(得分:0)

这似乎更多是数据库设计问题。

通常的做法是拥有一个买方表,一个卖方表,一个地址表。然后每个买方/卖方行都有一个addressID FK。地址表中不应包含买家/卖家ID,因为该地址可能属于几行

评论后编辑:

在这种情况下,您需要一个BuyerAddress(与SellerAddress相同)表,其中包含BuyerId和addressId,它将保留每个买家的所有地址(buyerId,addressId)

BuyerTable:ID,名称 SellerTable:ID,名称 地址表:ID,街道,城市,用户ID BuyerAddressTable:BuyerId,addressId SellerAddressTable:sellerId,addressId