当另一个集合发生更改时,MongoDB动态更新集合

时间:2015-04-22 15:34:29

标签: mongodb-.net-driver

我使用Robomongo创建了两个集合:   collection_Project包含这样的文档

{
"_id" : ObjectId("5537ba643a45781cc8912d8f"),

"_Name" : "ProjectName",
"_Guid" : LUUID("16cf098a-fead-9d44-9dc9-f0bf7fb5b60f"),
"_Obj" : [ 
 ]
}

我用函数

创建
public static void CreateProject(string ProjectName)
    {
        MongoClient client = new MongoClient("mongodb://localhost/TestCreationMongo");
        var db = client.GetServer().GetDatabase("TestMongo");
        var collection = db.GetCollection("collection_Project");
        var project = new Project
        {
            _Name = ProjectName,
            _Guid = Guid.NewGuid(),
            _Obj = new List<c_Object>()
        };
        collection.Insert(project);
    }

和包含这样的文档的collection_Object

{
  "_id" : ObjectId("5537ba6c3a45781cc8912d90"),
  "AssociatedProject" : "ProjectName",
  "_Guid" : LUUID("d0a5565d-a0aa-7a4a-9683-b86f1c1de188"),
  "First" : 42,
  "Second" : 1000
}

我用函数

创建
 public static void CreateObject(c_Object ToAdd)
    {
        MongoClient client = new MongoClient("mongodb://localhost/TestCreationMongo");
        var db = client.GetServer().GetDatabase("TestMongo");
        var collection = db.GetCollection("collection_Object");

        collection.Insert(ToAdd);

我使用函数

更新collection_Project的文档
 public static void AddObjToProject(c_Object ObjToAdd, string AssociatedProject)
    {
        MongoClient client = new MongoClient("mongodb://localhost/TestCreationMongo");
        var db = client.GetServer().GetDatabase("TestMongo");
        var collection = db.GetCollection<Project>("collection_Project");

        var query = Query.EQ("_Name", AssociatedProject);
        var update = Update.AddToSetWrapped<c_Object>("_Obj", ObjToAdd);

        collection.Update(query, update);
    }

以便collection_Project中的文档看起来像这样

{
"_id" : ObjectId("5537ba643a45781cc8912d8f"),
"_Name" : "ProjectName",
"_Guid" : LUUID("16cf098a-fead-9d44-9dc9-f0bf7fb5b60f"),
"_Obj" : [ 
    {
        "_id" : ObjectId("5537ba6c3a45781cc8912d90"),
        "AssociatedProject" : "ProjectName",
        "_Guid" : LUUID("d0a5565d-a0aa-7a4a-9683-b86f1c1de188"),
        "First" : 42,
        "Second" : 1000
    }
  ]
}

我是否可以仅在collection_Object中更新文档并查看collection_Project中的更改?

我试着这样做

 public static void UpdateObject(c_Object ToUpdate)
    {
        MongoClient client = new MongoClient("mongodb://localhost/TestCreationMongo");
        var db = client.GetServer().GetDatabase("TestMongo");
        var collection = db.GetCollection("collection_Object");

        var query = Query.EQ("_Guid", ToUpdate._Guid);
        var update = Update.Replace<c_Object>(ToUpdate);
        collection.Update(query, update);
    }

但我的collection_Project没有改变。

你有任何线索吗?

1 个答案:

答案 0 :(得分:2)

看起来您正在将“对象”文档嵌入到“项目”文档中,这可能没问题,但是这种方法消除了对单独的collection_Object集合的需要。也就是说,collection_Object是多余的,因为每个对象(不仅仅是一个引用)实际上都存储在Project文档中。

有关使用embedded documents的信息,请参阅文档。

或者,您可以使用document references

最佳使用方法取决于您的具体用例。