更新:私は答えを受け入れましたが、なぜ私が試したことが機能しないのか(Scalaの暗黙的な動作を理解するために)、まだ非常に興味があります。他の回答は大歓迎です。
(Circumflex についてあまり知識がなくてもこの質問に答えられることを願っていますが、念のため、文書化されたソース コード リファレンスを次に示します。)
Circumflex ORMライブラリにいくつかの便利な関数を追加しようとしていますが、Scala の暗黙的な変換を使用しようとすると、いくつかの障壁に遭遇します。以下、暗黙の変換がトリガーされないのはなぜですか? サブクラス化および/または再帰型パラメーターとの複雑な相互作用があると思われます。
import ru.circumflex.orm._
// I subclass Record and Table to add my own convenience methods etc. (not pasted, irrelevant)
abstract class XRecord[PK, R <: XRecord[PK, R]] extends Record[PK, R] { this: R => }
trait XTable[PK, R <: XRecord[PK, R]] extends Table[PK, R] { this: R => }
// Example entity.
class Org extends XRecord[Long,Org] {
val id = "id".BIGINT.NOT_NULL.AUTO_INCREMENT
def PRIMARY_KEY = id
def relation = Org
}
object Org extends Org with XTable[Long,Org]
object Test extends App {
// I want this conversion to work for all Records, not just XRecords.
// Need implicit f to be able to accept XRecord, a subclass of Record.
implicit def toRichRelationNode[PK, R <: Record[PK,R], RR](xs: RR)(implicit f: RR => RelationNode[PK,R]) =
new { def GET(f: RelationNode[PK,R] => Predicate) = 0 }
// This works.
toRichRelationNode(Org) GET (_.id EQ 1)
// This doesn't:
// "No implicit view available from Org.type => ru.circumflex.orm.RelationNode[PK,R]."
Org GET (_.id EQ 1)
}