3

我希望有人可以帮助我。

我正在使用 VS 2012 和 MVC4。

我正在使用HttpPostedFileBase使用强类型模型测试一个项目。当我尝试搭建视图时,它失败了:

---------------------------
Microsoft Visual Studio
---------------------------
Unable to retrieve metadata for 'ImageTest.Models.ImageHandler'. Value cannot be null.

Parameter name: key
---------------------------
OK   
---------------------------

我已尝试按照网上一些帖子中的建议卸载然后重新安装 MVC,但这并没有帮助。这是我的模型:(是的,我在 Id 上尝试过 [Key],但没有区别)

using System;
using System.Web;
using System.Linq;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;

namespace ImageTest.Models
{
public class ImageHandler
{
public int Id { get; set; }
public string ImageName { get; set; }
public HttpPostedFileBase File { get; set; }
}
}

我认为这可能是一个上下文问题,但如果我创建自定义上下文或使用预定义的上下文无关紧要,我会得到相同的错误。这是预定义的上下文:

using ImageTest.Models;
using System.Data.Entity;

public class ImageHandlerContext : DbContext
{
public ImageHandlerContext() : base("DefaultConnection")
{
}

public DbSet<ImageHandler> ImageHandler { get; set; }
}

作为测试,如果我注释掉:

// public HttpPostedFileBase File { get; set; }

我可以毫无问题地搭建视图。这是一个错误吗?我在文档中看不到不支持脚手架 HttpPostedFileBase 的任何地方。请参阅:HttpPostedFileBase

提前致谢。

4

2 回答 2

2

斯坦走在正确的轨道上。

模型-视图-控制器或 MVC 使用实体框架来搭建视图。

实体数据模型:原始数据类型

.NET 4.5 当前支持原始数据类型,除非定义了复杂数据类型。以下是支持的原始数据类型:

Binary
Boolean
Byte
DateTime
DateTimeOffset
Decimal
Double
Float
Guid
Int16
Int32
Int64
SByte
String
Time

有关扩展此功能的更多信息,请参阅:复杂类型

感谢斯坦对我的赞许。

编辑:首先需要使用原始数据类型为视图搭建支架,然后稍后将 HttpPostedFileBase 添加到模型中以使用文件上传功能。作为示例,请参阅:以表格形式上传图像并在 MVC 4 上显示

您还需要在模型中使用 (NotMapped):

[NotMapped]
public HttpPostedFileBase File { get; set; }

现在在 Scaffolded Create ActionResult 方法中,您的 View 的 Form Return Valus 包含一个您可以使用的 System.Web.HttpPostedFileWrapper。

如此简短的回答:

1: Create your Code First Model with Primitive Data Types only! Unless you use the [NotMapped] Attribute.
2: Scaffold your View's.
3: If not done so in step 1, Add to your Model the Methods needed.  E.G: public HttpPostedFileBase File { get; set; } using the [NotMapped] Attribute
4: Add to your Database the necessary Table either manually or from the Console.
5: Add the necessary code to your View's and Controller.

这应该足以让你工作......

于 2013-06-18T04:56:27.487 回答
1

我认为您不能将其HttpPostedFileBase作为模型的属性,至少不能通过 EntityFramework 映射并自动搭建脚手架。如果您考虑一下 - 您认为此属性类型将映射到哪些数据库字段?

如果您想将二进制数据实际存储在数据库中,请使用此

public byte[] File { get; set; }

作为你的财产。

于 2013-06-18T03:49:21.523 回答