MongoDBObjectのas
メソッドを使用して、値を取得し、1回の呼び出しでキャストできます。
val coll = MongoConnection()(dbName)(collName)
val query = MongoDBObject("title" -> "some value")
val obj = coll findOne query
val someStr = obj.as[String]("title")
val someInt = obj.as[Int]("count")
// and so on..
as
指定されたキーが見つからない場合は例外をスローすることに注意してください。getAs
あなたはあなたに与える使用することができますOption[A]
:
obj.getAs[String]("title") match {
case Some(someStr) => ...
case None => ...
}
リストの抽出はもう少し複雑です。
val myListOfInts =
(List() ++ obj("nums").asInstanceOf[BasicDBList]) map { _.asInstanceOf[Int] }
私は、casbahの使用をより考慮に入れるヘルパーを作成しましたが、それが役立つかもしれないので、それを添付します。
package utils
import com.mongodb.casbah.Imports._
class DBObjectHelper(underlying: DBObject) {
def asString(key: String) = underlying.as[String](key)
def asDouble(key: String) = underlying.as[Double](key)
def asInt(key: String) = underlying.as[Int](key)
def asList[A](key: String) =
(List() ++ underlying(key).asInstanceOf[BasicDBList]) map { _.asInstanceOf[A] }
def asDoubleList(key: String) = asList[Double](key)
}
object DBObjectHelper {
implicit def toDBObjectHelper(obj: DBObject) = new DBObjectHelper(obj)
}
次のようなヘルパーを使用できます。
val someStr = obj asString "title"
val someInt = obj asInt "count"
val myDoubleList = obj asDoubleList "coords"
お役に立てば幸いです。