Xamarin.Forms Upload Multiple Images with Data
问题 I have found several tutorials on how to upload an image or multiple images in Xamarin. However, I have not found how to send multiple images with each image containing some satellite data. This is how the model looks like on the server: public class AppFileDTO { public IFormFile File { get; set; } public string CategoryName { get; set; } public string CategoryDescription { get; set; } public string Detail { get; set; } } But the controller needs a list of data. Here is the Asp.Net Web Api