Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
MongoDB にレコードを挿入します
var test = Entry.createRecord .name("Williams") .nr("1") .save
これらを次の方法でクエリします。
val qry = QueryBuilder.start("name").is("Williams").get var my = test.findAll(qry) println(my)
このクエリはドキュメント全体を返します。名前だけを照会するにはどうすればよいですか?