我正在 C#中进行相对琐事 MongoDB MapReduce 演示。
代码如下:
public List<CategorySummaryResult> GetCategorySummaries()
{
string map = @"
function() {
var key = this.FeedType;
var value = {count: 1, names: this.Name};
emit(key, value);
}";
string reduce = @"
function(key, values) {
var result = {count: 0, names: ''};
values.forEach(function(value) {
result.count += value.count;
result.names += ',' + value.names;
});
return result;
}";
string finalize = @"
function(key, value) {
if (value.names.charAt(0) === ',')
value.names = value.names.substr(1);
return value;
}";
var options =
MapReduceOptions
.SetFinalize(finalize)
.SetOutput(MapReduceOutput.Inline);
var result =
_db.GetCollection("NewsCategories")
.MapReduce(map, reduce, options)
.GetInlineResultsAs<CategorySummaryResult>()
.ToList();
return result;
}
要反序列化的对象:
public class CategorySummaryResult
{
public double id { get; set; }
public ICollection<CategorySummary> value { get; set; }
}
public class CategorySummary
{
public double count { get; set; }
public string names { get; set; }
}
这是BSON输出的样子:
[0]: { "_id" : 1.0, "value" : { "count" : 3.0, "names" : "Games,Technologie,Auto" } }
[1]: { "_id" : 2.0, "value" : { "count" : 1.0, "names" : "Hoofdpunten" } }
但是我一直得到以下例外:
An error occurred while deserializing the value property of class MetroNews.Managers.CategorySummaryResult:
Expected element name to be '_t', not 'count'.
出了什么问题,我该如何解决??
答案 0 :(得分:1)
您无法正确序列化/反序列化ICollection。
它将序列化为任何对象的列表,但是当您想要反序列化它时会出现问题。
反序列化程序无法实例化ICollection,并且在不通过约定指定的情况下不知道要使用的特定类型。
你应该改变
public class CategorySummaryResult
{
public double id { get; set; }
public ICollection<CategorySummary> value { get; set; }
}
类似
public class CategorySummaryResult
{
public double id { get; set; }
public List<CategorySummary> value { get; set; }
}
答案 1 :(得分:0)
尝试将[BsonDiscriminatorAttribute(required=true)]
添加到CategorySummary
班级。