คำถามติดแท็ก scalaquery

2
วิธี scala 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 with the same type as the table's type parameter …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.