複数のドキュメントの更新
インスタンスで update_many() Collection
メソッドを呼び出すことで、コレクション内の複数のドキュメントをアップデートできます。
次のパラメータをupdate_many()
メソッドに渡します。
一致する基準を指定するクエリフィルター
ドキュメントの更新 。一致するすべてのドキュメントに対する更新を指定します
update_many()
メソッドは UpdateResult を返します 変更されたドキュメントの数など、更新操作の結果に関する情報を含むタイプ。
update_many()
メソッドの詳細については、ドキュメントの修正 ガイドの「 ドキュメントのアップデート 」セクションを参照してください。
例
この例では、 sample_restaurants
データベースの restaurants
コレクション内のドキュメントを更新します。 update_many()
メソッドは、address.street
フィールドの値が "Sullivan Street"
であり、borough
フィールドの値が "Manhattan"
であるドキュメントに near_me
フィールドを追加します。
restaurants
コレクション内のドキュメントには、Document
型またはカスタムデータ型のインスタンスとしてアクセスできます。コレクションのデータを表すデータ型を指定するには、強調表示された行の <T>
型パラメータを次のいずれかの値に置き換えます。
<Document>
:コレクションドキュメントをBSONドキュメントとしてアクセスします。<Restaurant>
: コードの上部で定義されたRestaurant
構造体のインスタンスとしてコレクションドキュメントにアクセスします
AsynchronousSynchronous各実行時に対応するコードを表示するには、 タブまたは タブを選択します。
use std::env; use mongodb::{ bson::doc, Client, Collection }; use bson::Document; use serde::{ Deserialize, Serialize }; struct Address { street: String, city: String, } struct Restaurant { name: String, borough: String, address: Address, } async fn main() -> mongodb::error::Result<()> { let uri = "<connection string>"; let client = Client::with_uri_str(uri).await?; // Replace <T> with the <Document> or <Restaurant> type parameter let my_coll: Collection<T> = client .database("sample_restaurants") .collection("restaurants"); let filter = doc! { "address.street": "Sullivan Street", "borough": "Manhattan" }; let update = doc! { "$set": doc! { "near_me": true } }; let res = my_coll.update_many(filter, update).await?; println!("Updated documents: {}", res.modified_count); Ok(()) }
// Your values might differ Updated documents: 22
use std::env; use mongodb::{ bson::{ Document, doc }, sync::{ Client, Collection } }; use serde::{ Deserialize, Serialize }; struct Address { street: String, city: String, } struct Restaurant { name: String, borough: String, address: Address, } fn main() -> mongodb::error::Result<()> { let uri = "<connection string>"; let client = Client::with_uri_str(uri)?; // Replace <T> with the <Document> or <Restaurant> type parameter let my_coll: Collection<T> = client .database("sample_restaurants") .collection("restaurants"); let filter = doc! { "address.street": "Sullivan Street", "borough": "Manhattan" }; let update = doc! { "$set": doc! { "near_me": true } }; let res = my_coll.update_many(filter, update).run()?; println!("Updated documents: {}", res.modified_count); Ok(()) }
// Your values might differ Updated documents: 22