参考列表为空? Visual Studio,.Net核心。尝试使用system.web添加

时间:2018-09-27 13:06:10

标签: c# .net image visual-studio reference

我正在尝试添加对System.Web.Abstractions的引用,因此可以在ViewModel中使用HttpPostedFileBase

这是我的viewModel

public class CreateCarVM
{
    public CarModel Car { get; set; }
    public List<HttpPostedFileBase> Images { get; set; }
}

基本上CarModel仅包含有关汽车的信息,“图像”应该是它的图片。但我收到此错误:

  

严重性代码描述项目文件行抑制状态   错误CS0246类型或名称空间名称'HttpPostedFileBase'无法   被发现

我尝试添加using语句,但是没有用。然后我读到我需要添加一个引用,所以我打开了引用管理器,它是空的。

所以现在我不知道该怎么办...

0 个答案:

没有答案