次のようなテーブルがあります。
object Addresses extends Table[AddressRow]("address") {
def id = column[Int]("id", O.PrimaryKey, O.AutoInc)
def street = column[String]("street")
def number = column[String]("number")
def zipcode = column[String]("zipcode")
def city = column[String]("city")
def country = column[String]("country")
def geoLocationId = column[Int]("geo_location_id", O.Nullable)
// Foreign keys.
def geoLocation = foreignKey("fk_geo_location", geoLocationId, GeoLocations)(_.id)
// Rest of my code.
...
}
私のケースクラスは次のとおりです。
case class AddressRow(
id: Option[Int] = None,
street: String,
number: String,
zipcode: String,
city: String,
country: String,
geoLocationId: Option[Int])
お気づきのように、 geoLocation はオプションの外部キーです....
外部キー定義でこの「オプション」を記述する方法が見つかりません。
私は次のように試しました:
def geoLocation = foreignKey("fk_geo_location", geoLocationId.asColumnOf[Option[Int]], GeoLocations)(_.id)
しかし、私は受け取ります:
原因: scala.slick.SlickException: 外部キー制約で列 Apply Function Cast を使用できません (名前付き列のみが許可されます)
誰か提案がありますか?