2
스칼라 슬릭 방법은 지금까지 이해할 수 없습니다
나는 Slick 작품과 그에 필요한 것을 이해하려고 노력합니다. 여기에 예가 있습니다. package models case class Bar(id: Option[Int] = None, name: String) object Bars extends Table[Bar]("bar") { def id = column[Int]("id", O.PrimaryKey, O.AutoInc) // This is the primary key column def name = column[String]("name") // Every table needs a * projection …