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 trying to return this class in web api:

    public IEnumerable<Product> Get()
    {
        var fruits = new Category("Fruits");
        var veggies = new Category("Veggies");

        var apple = new Product("apple");
        apple.Categories = new List<Category>() { fruits };

        var potato = new Product("Potatoes");
        potato.Categories = new List<Category>() { veggies };

        var banana = new Product("Banana");
        banana.Categories = new List<Category>() { fruits };

        List<Product> list = new List<Product>(){
          apple, potato, banana
        };

        return list; 
    }

For whatever reason the Categories collection is always returned empty... Am I missing something ?

Thanks!

Update:

 public class Category
    {
        public string Id { get; private set; }
        public string Name { get; private set; }

        public Category() { }

        public Category(string name)
        {
            if (string.IsNullOrEmpty(name))
                throw new ArgumentException("name must be set");

            this.Name = name;
        }
    }

Aaand.. It won't show the categories because both properties in Category class don't have public setter.

Makes me wonder why serializer is checking for access modifier of setter.

share|improve this question
did you check by adding breakpoint if the value for categories are present ? And I am not sure what new List<Category>() { fruits }; does please post the constructor of category class. – Yasser Nov 13 '12 at 4:59

2 Answers

up vote 0 down vote accepted

Category class had 2 properties, both having private setter; properties with private setter won't be serialized.

share|improve this answer

I have verified that the private set issue have been fixed in web api RTM release.

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.