public class Person
{
public ObjectId _id { get; set; }
public int AddressID { get; set; }
public int Age { get; set; }
public Person Father { get; set; }
public string ID { get; set; }
public double Income { get; set; }
public string Name { get; set; }
}
public class Address
{
public ObjectId _id { get; set; }
public int HouseNo { get; set; }
public int ID { get; set; }
public string Street { get; set; }
}
如何通过街道获得收入总和?通过使用mongodb c#driver
按年龄收入。
var personcollection = this.cdb.GetCollection<Person>("person");
var aggregate = personcollection.Aggregate()
.Group(new BsonDocument { { "_id", "$Age" }, { "sum", new BsonDocument("$sum", "$Income") } });
var results = await aggregate.ToListAsync();
但我知道如何为单个查询链接两个文档。
谢谢你的帮助。
答案 0 :(得分:1)
这有点像架构设计缺陷。
您应该将地址文档嵌入Person
文档:
public class Person
{
public ObjectId _id { get; set; }
public Address Address { get; set; }
public int Age { get; set; }
public Person Father { get; set; }
public string ID { get; set; }
public double Income { get; set; }
public string Name { get; set; }
}
public class Address
{
public ObjectId _id { get; set; }
public int HouseNo { get; set; }
public int ID { get; set; }
public string Street { get; set; }
}
然后,您可以轻松执行请求的查询 (修改现有查询)
var personcollection = this.cdb.GetCollection<Person>("person");
var aggregate = personcollection.Aggregate()
.Group(new BsonDocument { { "_id", "$Address.Street" }, { "sum", new BsonDocument("$sum", "$Income") } });
var results = await aggregate.ToListAsync();
请注意使用点符号来覆盖嵌入式文档内部 - Address.Street
答案 1 :(得分:1)
我知道这是一个老线程 - 但我正在撰写一个与'查找'有关的问题,我发现了这一点。如果有人通过搜索方式到达,那么值得注意的是,MongoDB中的“连接”现在已经到位了。
如果您有正确的MongoDB和驱动程序版本(分别是3.2和2.2,我认为),那么您可以在聚合管道中使用'lookup'来连接ID上的两个表。
答案 2 :(得分:0)
我确实是这样查询的:
MongoDB
db.dbACESSO.aggregate([
{$match: {PartnerId: "2021", CD_CLIENTE: 4003}},
{$lookup: {from: "GRUPO_UNIDADE", localField: "CD_GRUPO_UNIDADE", foreignField: "CD_GRUPO_UNIDADE", as: "GRUPO"}},
{$lookup:{from: "UNIDADE", localField: "CD_UNIDADE", foreignField: "CD_UNIDADE",as: "UNIDADE"}},
{$unwind: "$GRUPO"},
{$unwind: "$UNIDADE"},
{ $project: { _id: 0, CD_CLIENTE : 1, CD_ACESSO : 1, NOME : 1, EMAIL : 1, FG_KIPER_MOBILE : 1, CD_GRUPO_UNIDADE : 1, CD_UNIDADE : 1,
GRUPO: "$GRUPO.NM_DESCRICAO", UNIDADE : "$UNIDADE.NM_DESCRICAO",
NU_TELEFONE: { $cond: [{ $eq : ["$NU_TELEFONE", { }] }, "", "$NU_TELEFONE"] },
TAG: { $cond: [{ $eq: ["$NU_KIPER_TAG", { }] }, 0, 1] },
CONTROLE: { $cond: [{ $eq: ["$NU_KIPER_RF", { }] }, 0, 1] },
APPATIVO: { $cond: [{ $eq: ["$KEY_HASH", { }] }, "", "$KEY_HASH"] } }
}
])
C#驱动程序
var match = new BsonDocument { { "$match", new BsonDocument { { "PartnerId", cliente }, { "CD_CLIENTE", codCond } } } };
var lookup1 = new BsonDocument { { "$lookup", new BsonDocument { { "from", "GRUPO_UNIDADE" }, { "localField", "CD_GRUPO_UNIDADE" }, { "foreignField", "CD_GRUPO_UNIDADE" }, { "as", "GRUPO" } } } };
var lookup2 = new BsonDocument { { "$lookup", new BsonDocument { { "from", "UNIDADE" }, { "localField", "CD_UNIDADE" }, { "foreignField", "CD_UNIDADE" }, { "as", "UNIDADE" } } } };
var unwind1 = new BsonDocument("$unwind", "$GRUPO");
var unwind2 = new BsonDocument("$unwind", "$UNIDADE");
var project = new BsonDocument
{
{
"$project", new BsonDocument
{
{ "_id", 0},
{ "CD_CLIENTE", 1},
{ "CD_ACESSO", 1 },
{ "NOME", 1},
{ "EMAIL", 1 },
{ "FG_KIPER_MOBILE", 1 },
{ "CD_GRUPO_UNIDADE", 1 },
{ "CD_UNIDADE", 1 },
{ "GRUPO", "$GRUPO.NM_DESCRICAO" },
{ "UNIDADE", "$UNIDADE.NM_DESCRICAO" },
{ "NU_TELEFONE", new BsonDocument{{ "$cond", new BsonArray{new BsonDocument{{"$eq", new BsonArray{ "$NU_TELEFONE", new BsonDocument { } } }}, "","$NU_TELEFONE" } }}},
{ "TAG", new BsonDocument{{ "$cond", new BsonArray{new BsonDocument{{"$eq", new BsonArray{ "$NU_KIPER_TAG", new BsonDocument { } } }}, 0, 1 } }}},
{ "CONTROLE", new BsonDocument{{ "$cond", new BsonArray{new BsonDocument{{"$eq", new BsonArray{ "$NU_KIPER_RF", new BsonDocument { } } }}, 0, 1 } }}},
{ "APP", new BsonDocument{{ "$cond", new BsonArray{new BsonDocument{{"$eq", new BsonArray{ "$FG_KIPER_MOBILE", false } }}, 0, 1 } }}},
{ "APPATIVO", new BsonDocument{{ "$cond", new BsonArray{new BsonDocument{{"$eq", new BsonArray{ "$KEY_HASH", new BsonDocument { } } }}, "", "$KEY_HASH" } }}}
}
}
};
var pipeline = new[] { match, lookup1, lookup2, unwind1, unwind2, project };
var result = collection.Aggregate<BsonDocument>(pipeline).ToList();
var lista = JsonConvert.DeserializeObject<List<UsuariosAcessos>>(result.ToJson()).ToList();