我正在开发一个 MVC4 SPA 应用程序。其中一项功能是能够上传文件/图像并存储在数据库中。我想知道如何做到这一点。我们可以用普通的 MVC 或 Asp.net 处理相同的方式吗?这是我的模型:
public byte[] Image { get; set; }
public byte[] Binary { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string OtherInfo { get; set; }
如果可能,请与我分享一些演示/教程...
谢谢