gpt4 book ai didi

c# - 如何在 C# 中获取 MongoDbRef

转载 作者:可可西里 更新时间:2023-11-01 09:16:06 25 4
gpt4 key购买 nike

如何使用 C# 的 MongoDB 驱动程序在 C# 中获取 MongoDbRef。知道 FetchDbRef 方法不再存在。

最佳答案

related documentation 中不鼓励使用 Mongo DbRefs支持手动引用(它们是相同的基本概念,但在您的代码中明确处理)。

如果您想在单个事务中返回链接的文档,您可以使用 lookup 聚合 - 使用 linq details here

var query = from p in collection.AsQueryable()
join o in otherCollection on p.Name equals o.Key into joined
select new { p, joined };

或等效的流畅 API - 文档缺少示例,但您可以在单元测试中看到一些演示用法 here .

关于c# - 如何在 C# 中获取 MongoDbRef,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53542392/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com