【发布时间】:2013-03-21 00:07:00
【问题描述】:
我已经搜索了这个答案的高低,但找不到任何东西......我是不是很傻?
protected override void Seed(MyContext context)
{
context.Items.Add(new Item
{
URL = "my-url-field",
Title = "My Title for this Item",
Image = "some-image-file.jpg" // this is httppostedfilebase - how to seed this?
});
}
我想我必须实例化一个 httppostedfilebase 对象,但我该怎么做呢?
【问题讨论】:
标签: asp.net-mvc seeding httppostedfilebase