저는 두 개의 mongoDB 컬렉션을 C# 코드에 결합하려고합니다. 예를 들어 this을 따르려고합니다.MapReduceOptionsBuilder()를 찾을 수 없습니다. MongoDb는 컬렉션에 참여합니다
하지만 내 코드는 다음 줄에 오류가 있습니다. MapReduceOptionsBuilder를 찾을 수 없다고 말했습니다.
var options = new MapReduceOptionsBuilder();
options.SetOutput(MapReduceOutput.Inline);
options.SetOutput(MapReduceOutput.Reduce("result"));
var result = cLifeExpectancy.MapReduce(life_expect_map, r, options);
result = cEconomicAssistance.MapReduce(us_econ_map, r, options);
것은 내가 Nuget 내 프로젝트에 설치 한 다음 한 :
- MongoDB.Bson
- MongoDB.Driver
- MongoDB.Driver.core
다음 참조 덧붙였다.
using MongoDB.Bson;
using MongoDB.Bson.Serialization.Attributes;
using MongoDB.Driver;
using MongoDB.Driver.Builders;
누군가 내가 누락 된 부분을 말해 줄 수 있습니까? 또는 C# .net에서 MongoDB 컬렉션에 합류하는 다른 예제를 공유하십시오. 또는 MapReduceOptionsBuilder의 대안입니다.
을하는 데 도움이됩니다. 대신 "MapReduceArgs"를 사용하십시오. 어떻게 MapReduceArgs를 사용하여 동일한 결과를 얻을 수 있습니까? –
대신 답변을 링크에 추가했습니다. – KaSh