Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on a relative trival MongoDB MapReduce demo in C#.

The code is as follows:

    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;
    }

Objects to deserialize to:

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; }
}

Here's how the BSON output looks like:

[0]: { "_id" : 1.0, "value" : { "count" : 3.0, "names" : "Games,Technologie,Auto" } }
[1]: { "_id" : 2.0, "value" : { "count" : 1.0, "names" : "Hoofdpunten" } }

However I keep getting the following exception:

An error occurred while deserializing the value property of class MetroNews.Managers.CategorySummaryResult:
 Expected element name to be '_t', not 'count'.

What's going wrong and how can I fix it?

share|improve this question

2 Answers

up vote 0 down vote accepted

You cannot properly serialize/deserialize an ICollection.

It will serialize fine into a list of whatever objects but the problem occurs when you want to deserialize it.

The deserializer cannot instantiate an ICollection and does not know what specific type of to use without you specifying it through conventions.

you should change

public class CategorySummaryResult
{
   public double id { get; set; }
   public ICollection<CategorySummary> value { get; set; }
}

to something like

public class CategorySummaryResult
{
   public double id { get; set; }
   public List<CategorySummary> value { get; set; }
}
share|improve this answer
Thx for the tip. I've already tried that, no cigar :/ – David Nov 22 '12 at 9:48
and your're sure your mongodb is not "poluted" with old data? – Christian Westman Nov 22 '12 at 9:51
The non-deserialized data, as posted above, looks fine. The error lies with the deserialization. – David Nov 22 '12 at 9:59
the JSON data you posted above is not valid for a list of CategorySummary and will not deserialize into a list. it will deserialize into an object with the properties "count" and "names". – Christian Westman Nov 22 '12 at 10:04
you're right! how did I miss that? 'value' should be of type CategorySummary, not a list of it. thank you! in my defence, that is one misleading error message :) – David Nov 22 '12 at 10:21

Try adding [BsonDiscriminatorAttribute(required=true)] to your CategorySummary class.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.