2

我有这样的文件计划:

{
  "_id" : ObjectId("4fbb728d80db260988580e05"),
  "titleFull" : "Foo, Inc",
  "titleShort" : "Foo",
  "countries" : [
     ObjectId("4fba04ef80db260988f8b607"),
     ObjectId("4fba05f880db260988cd5cfd") ],
  "type" : "company"
}

以及 ASP.NET MVC 4 Web API 项目中的此类:

public class Company
{
  [BsonRepresentation(BsonType.ObjectId)]
  public String id { get; set; }
  public String titleFull { get; set; }
  public String titleShort { get; set; }
  //[BsonRepresentation(BsonType.ObjectId)]
  //public String[] countries { get; set; } — not working
  public ObjectId[] countries { get; set; }
  public String type { get; set; }
}

当我发送 GET 请求时,/api/countries我收到 JSON 文档(它是 mvc 反序列化):

{
  "id": "4fba097e80db2609886ce7f2",
  "titleFull": "Foo, LLC",
  "titleShort": "Foo",
  "countries": [
    {
      "_increment": 16299527
      "_machine": 8444710
      "_pid": 2440
      "_timestamp": 1337591023
    },
    {
      "_increment": 13458685
      "_machine": 8444710
      "_pid": 2440
      "_timestamp": 1337591288
    }
  ],
  "type": "company"
}

有没有办法像这样进行 JSON 响应:

{
  "id": "4fba097e80db2609886ce7f2",
  "titleFull": "Foo, LLC",
  "titleShort": "Foo",
  "countries": ["4fba04ef80db260988f8b607","4fba05f880db260988cd5cfd"],
  "type": "company"
}
4

2 回答 2

3

给未来的读者的注意事项

Rober Stam 在 google 群组中写道:

反序列化代码中存在错误。在数组的情况下,[BsonRepresentation] 属性实际上应用于项目而不是数组。

我为此创建了一张 JIRA 票证:

https://jira.mongodb.org/browse/CSHARP-479

所以如果你有同样的问题,请追踪这张票。

于 2012-05-29T13:21:10.817 回答
0

在响应中,不要使用 ObjectId for Country,而是使用字符串数组并添加要在 json 响应中传递的 id。

公共字符串 [] 国家 { 得到;放; }

如果你像这样使用,响应将在 json 中是这样的

“国家”:[“4fba04ef80db260988f8b607”,“4fba05f880db260988cd5cfd”],

您正在使用 id 字段中的字符串。

于 2012-05-28T08:39:19.487 回答