MongoDB
 Computer >> コンピューター >  >> プログラミング >> MongoDB

MongoDBの子コレクション内のオブジェクトを削除しますか?


子コレクション内のオブジェクトを削除するには、MongoDBで$pullを使用します。ドキュメントを使用してコレクションを作成しましょう-

> db.demo715.insertOne({
...    _id:1,
...    details :
...    [
...       { 'id' : '101',
...       'Information' : [
...          {
...             'studentid' : '102',
...             "Name":"Bob"
...          },
...          {
...             'studentid' : '103',
...             "Name":"Chris"
...          }
...       ]
...    }
... ]
... });
{ "acknowledged" : true, "insertedId" : 1 }

find()メソッドを使用してコレクションからすべてのドキュメントを表示する-

> db.demo715.find();

これにより、次の出力が生成されます-

{ "_id" : 1, "details" : [ { "id" : "101", "Information" : [ { "studentid" : "102", "Name" : "Bob" }, { "studentid" : "103", "Name" : "Chris" } ] } ] }

以下は、MongoDBの子コレクション内のオブジェクトを削除するためのクエリです-

> db.demo715.update(
...    {"details.id":'101'},
...    { $pull: { 'details.$.Information':{studentid:'102',"Name":"Bob"} } }
... );
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })

find()メソッドを使用してコレクションからすべてのドキュメントを表示する-

> db.demo715.find();

これにより、次の出力が生成されます-

{ "_id" : 1, "details" : [ { "id" : "101", "Information" : [ { "studentid" : "103", "Name" : "Chris" } ] } ] }

  1. MongoDBコレクションにインデックスを作成しますか?

    インデックスを作成するには、MongoDBでcreateIndex()を使用します。ドキュメントを使用してコレクションを作成しましょう- > db.demo702.createIndex({"details.id":1}); {    "createdCollectionAutomatically" : true,    "numIndexesBefore" : 1,    "numIndexesAfter" : 2,    &q

  2. C#のコレクションからオブジェクトの最初の出現を削除します

    コレクションからオブジェクトの最初の出現を削除するためのコードは次のとおりです- 例 using System; using System.Collections.ObjectModel; public class Demo {    public static void Main(){       Collection<string> col = new Collection<string>();       col.Add("Andy");