我第一次使用Web API 4并准备连接到MongoDb。我已经定义了一些简单的对象来表示模型,但是当我尝试从我的API的GET请求返回它们的集合时,只有一个属性被包含在生成的JSON对象中。
public class Topic : Entity
{
public string Name { get; set; }
public List<Topic> Parents { get; set; }
public List<Topic> Children { get; set; }
public List<ContentNode> ContentNodes { get; set; }
}
public class ContentNode
{
public enum ContentNodeType { VIDEO, TEXT, AUDIO };
public ContentNodeType ContentType { get; set; }
public string Url { get; set; }
public List<int> Scores { get; set; }
public List<Link> Links { get; set; }
public List<string> Comments { get; set; }
}
public string Get()
{
List<Topic> topics = new List<Topic>();
var programming = new Topic()
{
Id = "1",
Name = "Programming"
};
var inheritanceVideo = new ContentNode()
{
ContentType = ContentNode.ContentNodeType.VIDEO,
Url = "http://youtube.com",
Scores = new List<int>() {
4, 4, 5
},
Comments = new List<string>() {
"Great video about inheritance!"
}
};
var oop = new Topic()
{
Id = "2",
Name = "Object Oriented Programming",
ContentNodes = new List<ContentNode>() {
inheritanceVideo
}
};
programming.Children.Add(oop);
topics.Add(programming);
string test = JsonConvert.SerializeObject(topics);
return test;
}
我正在使用JSON.Net库在这里序列化对象,但我之前使用的是默认的JSON序列化程序,并且GET返回IEnumerable<Topic>
。在这两种情况下,返回的JSON都是:
"[{\"Id\":\"1\"}]"
对XML的浏览器请求工作得很好。根据JSON.Net的文档,似乎不应该将这些类序列化为JSON。为什么这不起作用的任何想法?我似乎不需要为每个成员应用显式属性。