Deserializacja JSON Object Array za pomocą Json.net

Próbuję użyć interfejsu API, który używa struktury przykładowej dla zwróconego jsona

[
   {
      "customer":{
         "first_name":"Test",
         "last_name":"Account",
         "email":"[email protected]",
         "organization":"",
         "reference":null,
         "id":3545134,
         "created_at":"2013-08-06T15:51:15-04:00",
         "updated_at":"2013-08-06T15:51:15-04:00",
         "address":"",
         "address_2":"",
         "city":"",
         "state":"",
         "zip":"",
         "country":"",
         "phone":""
      }
   },
   {
      "customer":{
         "first_name":"Test",
         "last_name":"Account2",
         "email":"[email protected]",
         "organization":"",
         "reference":null,
         "id":3570462,
         "created_at":"2013-08-12T11:54:58-04:00",
         "updated_at":"2013-08-12T11:54:58-04:00",
         "address":"",
         "address_2":"",
         "city":"",
         "state":"",
         "zip":"",
         "country":"",
         "phone":""
      }
   }
]

JSON.net będzie świetnie współpracował z następującą strukturą

{
    "customer": {
        ["field1" : "value", etc...],
        ["field1" : "value", etc...],
    }
}

Ale nie mogę zrozumieć, jak sprawić, by był zadowolony z dostarczonej struktury.

Użycie domyślnej wartości JsonConvert.DeserializeObject (treści) daje prawidłową liczbę klientów, ale wszystkie dane są zerowe.

Wykonanie czegoś z listy CustomerList (poniżej) powoduje wyjątek „Nie można deserializować bieżącej tablicy JSON”

public class CustomerList
{
    public List<Customer> customer { get; set; }
}

Myśli?

questionAnswers(4)

yourAnswerToTheQuestion