0

我正在使用 .NET CORE 设计一个 REST API 控制器,以便我可以上传文件,我应该在模型的请求中使用 IFormFile 还是 byte[] ?

It's better to do this ?

public class AttachmentModel
    {
        public string FileName { get; set; }
        public byte[] FileContent { get; set; }
   }

or this ?

public class AttachmentModel
    {
        public string FileName { get; set; }
        public IFormFile  FileContent { get; set; }
   }
4

0 回答 0