3

我在 Mongo 中存储了一些 37K 文档,它们看起来类似于以下内容:

{
    "_id" : GUID,
    "Country" : "Germany",
    "TypeIds" : [47]
}


{
    "_id" : GUID,
    "Country" : "France",
    "TypeIds" : [54, 47]
}

使用 MongoDB C# 驱动程序,并根据两个示例记录,我如何查询以下信息:

  1. TypeId 包含 47 或 54 的所有文档 - 应生成 2 条记录
  2. TypeIds 包含 47 和 54 的所有文档 - 应生成 1 条记录
  3. 所有具有包含 54 和“德国”国家/地区的 TypeId 的文档 - 应产生 0 条记录

谢谢,
基龙

4

1 回答 1

3

你有这样的课程(我只是代替 guid 使用 GuidId.ToString()):

public class Test
        {

            public Test()
            {
                TypeIds = new List<int>();
            }

            [BsonId]
            public string Id { get; set; }

            public string Country { get; set; }

            public List<int> TypeIds { get; set; }
        }

我已根据上述文档将行插入数据库

  var collection = db.Database.GetCollection("items");
            var id1 = Guid.NewGuid().ToString();
            var id2 = Guid.NewGuid().ToString();
            var test = new Test() { Id = id1, Country = "Germany" };
            test.TypeIds.Add(47);
            var test2 = new Test() { Id = id2, Country = "France" };
            test2.TypeIds.Add(54);
            test2.TypeIds.Add(47);
            collection.Insert(test);
            collection.Insert(test2);

查询:

//All documents that have TypeIds containing 47 or 54 - should result in 2 records
        var array = new List<int>() { 47, 54 };
        var condition1 = collection.FindAs<Test>(Query.In("TypeIds", BsonArray.Create(array))).ToList();

        //All documents that have TypeIds containing 54 AND a Country of 'Germany' - should result in 0 records
        var condition3 = collection.FindAs<Test>(Query.And(Query.EQ("TypeIds", 47), Query.EQ("Country", "Germany"))).ToList();

更新:我找到了做第二个条件的方法:

//All documents that have TypeIds containing 47 AND 54 - should result in 1 records

     var array2 = new List<int>() { 47, 54 };
     var query = Query.All("TypeIds",BsonArray.Create(array2));

     var condition2 = collection.FindAs<Test>(query).ToList();
于 2011-01-27T09:12:13.563 回答