0

PlayFramework 2.1.1 を Slick 1.0.1 および Play-Slick-Plugin 0.3.2 と組み合わせて使用​​しています。

モデルに「forInsert」-Mapper を実装するよう強制する抽象クラスの定義は、適切な戻り値の型を指定できないため失敗します。私の現在の定義では、以下のコンパイル エラーが発生しますが、この問題を追跡して正しい型を提供することはできません。

import play.api.db.slick.Config.driver.KeysInsertInvoker

abstract class Model[M]( val table: String ) extends Table[M]( table )
{
    def id = column[Int]( "id", O.PrimaryKey, O.AutoInc )

    def forInsert: KeysInsertInvoker[M, Int]
}

object Course extends Model[Course]( "course" )
{
    ...

    def forInsert = name ~ room <> ( apply _, unapply _ ) returning id
}

[error] Course.scala:27: polymorphic expression cannot be instantiated to expected type;
[error]  found   : [RU]play.api.db.slick.Config.driver.KeysInsertInvoker[model.Course,RU]
[error]  required: play.api.db.slick.Config.driver.KeysInsertInvoker[model.Course,Int]
[error]         def forInsert = name ~ room <> ( apply _, unapply _ ) returning id
[error]                                                               ^
[error] one error found
[error] (sample/compile:compile) Compilation failed
[error] Total time: 3 s, completed 18.06.2013 03:38:24
4

1 に答える 1