我想使用 ASP.NET Web API 将 Dictionary 序列化为 JSON 数组。为了说明当前输出,我有以下设置:
Dictionary<int, TestClass> dict = new Dictionary<int, TestClass>();
dict.Add(3, new TestClass(3, "test3"));
dict.Add(4, new TestClass(4, "test4"));
TestClass 定义如下:
public class TestClass
{
public int Id { get; set; }
public string Name { get; set; }
public TestClass(int id, string name)
{
this.Id = id;
this.Name = name;
}
}
当序列化为 JSON 时,我得到以下输出:
{"3":{"id":3,"name":"test3"},"4":{"id":3,"name":"test4"}}
不幸的是,这是一个对象而不是数组。有没有可能实现我想要做的事情?它不需要是字典,但我需要 TestClass 的 Id 是数组的键。
使用下面的列表,它被正确地序列化为一个数组,但没有使用正确的键。
List<TestClass> list= new List<TestClass>();
list.Add(new TestClass(3, "test3"));
list.Add(new TestClass(4, "test4"));
序列化为 JSON:
[{"id":3,"name":"test3"},{"id":4,"name":"test4"}]