WebAPI 2.0 Post Not Deserializing List<T> Property
问题 I have reviewed every similar article I can find here and tried anything that looked like it might work with no success (obv since I am now asking the question). I have a webAPI 2.0 controller with a POST action that takes in an object of type Reservation . This object contains, among other things, a property called Items which is of type EquipmentItems . As you can imagine, this is a List property. I send the reservation object over (using PostAsJsonAsync("api/Reservation", reservation)