Json – How to dynamically remove a default object from 'IEnumerable<T>' on a REST controller
I've got a Rest endpoint that receives the class EntityInsertRequest public class EntityInsertRequest { public string Description { get; set; } public IEnumerable<EntityFieldInsertRequest> Fields { get; set; } } public class EntityFieldInsertRequest { public string DatabaseField { get; set; }…