How do i patch enumerables with Odata.Delta with Webapi
问题 I´m trying to use System.Web.Http.OData.Delta to implement PATCH methods in ASP.NET Web API services, but it seems unable to apply changes to properties of type IEnumerable. This is my code: public class Person { [Required] public string Name { get; set; } public IList<Document> AdditionalDocuments { get; set; } public HomeAddress HomeAddress { get; set; } } public class HomeAddress { public string StreetName { get; set; } } public class Document { public string Value { get; set; } } The