How to post multiple entities Web API
I'll keep this post short and to the point. Here's the Server Side code for a Web API Controller: [ResponseType(typeof(Customer))] public async Task<IHttpActionResult> PostCustomer(IEnumerable<Customer> customers) { if (!ModelState.IsValid) ...
Jun 14, 20171 min read52
