選擇我有表定義油滑:使用投影來定義列的列表中油滑
object ADB {
extends BaseDB[A]("a")
with PostgresDriver{
def id = column[Long]("id", O.PrimaryKey)
def name = column[String]("name")
...
def * = id ~ name ~ ... <> (A.apply _, A.unapply _)
def forSelect = id ~ name
}
是否可以查詢A
時參考forSelect
?
我想保留在一個地方被選中的字段列表,以便將來可以推送forSelect
特性。
它的工作原理!謝謝! – 1esha