如何与Mapper实现一对一的关系? 来自Lift维基:
如果您希望建立一对一关系模型,只需使用一对多关系即可。唯一可能的麻烦是你将有一个List [B]而不是Box [B]。
是不是有更惯用的方式?
答案 0 :(得分:1)
我可能会通过降低一对多关系的可见性并创建一个getter / setter来实现它:
protected object comments extends
MappedOneToMany(Comment, Comment.post, OrderBy(Comment.id, Ascending))
def comment : Option[Comment] = {
comments match {
case Nil => None
case head :: _ => Some(head)
}
}
def comment_=(comment: Comment) = {
comments.clear
comments += comment
}
理想?不是。但是比客户端代码处理List [Comment]而不是Option [Comment]更惯用?我想是的。
沿着同一行,你也可以创建自己的类,扩展MappedOneToMany。这段代码未经测试,但我相信它的精神:
class MappedOneToOne[K,T<:KeyedMapper[K, T],O <: Mapper[O]]
(meta: MetaMapper[O], foreign: MappedForeignKey[K,O,T], qp: QueryParam[O]*) extends MappedOneToMany(meta, foreign, qp) {
def get : Option[O] = {
all match {
case Nil => None
case head :: _ => Some(head)
}
}
def set(o: O) : O = {
clear
this += o
o
}
}
class Foo extends KeyedMapper[Int,Foo] {
object bar extends MappedOneToOne[Int,Foo,Bar]
}
f.bar.get match {
case Some(bar) => println("Got bar")
case _ =>
}