返回视图模型无法识别实体框架

本文关键字:识别 实体 框架 视图 模型 返回 | 更新日期: 2023-09-27 18:19:13

Model:

Public partial class tbl_pictures {
public int picture_id
public string picture_content
public int user_no (foreign key)
public virtual tbl_user tbl_user {get;set;}
}

视图模型:

public class MyViewModel 
public IEnumerable<Telephone_Search.Models.tbl_users> users;
public IEnumerable<Telephone_Search.Models.tbl_pictures> images;

家庭控制器:

 [HttpPost]
    public ActionResult Index(HttpPostedFileBase file, MyViewModel model , tbl_pics pic)
    {
        if (ModelState.IsValid)
        {
            if (file != null)
            {                 
                file.SaveAs(HttpContext.Server.MapPath("~/Images/")
                                                      + file.FileName);
                byte[] data = new byte[] { };
                using (var binaryReader = new BinaryReader(file.InputStream))
                {
                    data = binaryReader.ReadBytes(file.ContentLength);
                }
               pic.picture_content = file.FileName;
               pic.emp_no = 6;
               db.tbl_pictures.Add(pic);
               db.SaveChanges();
            }
            return RedirectToAction("Index");
        }
         return this.View(new MyViewModel
        {
            images = pic //ERROR HERE
        });
    }

剃刀视图:

@foreach (var img in Model.images) {
        <img src="~/images/@img.profile_content" width="100" height="100"     />
        }
    @using (Html.BeginForm("Index", "Home", null, FormMethod.Post,
                      new { enctype = "multipart/form-data" }))
    {
        @Html.AntiForgeryToken()
        @Html.ValidationSummary(true)
        <div class="editor-label">
            @Html.LabelFor(model => model.picture_content)
        </div>
        <div class="editor-field">
            <input id="ImagePath" title="Upload a product image"
                   type="file" name="file" />
        </div>
        <p><input type="submit" value="Create" /></p>
    }

当我重新设置视图时,img 声明它不能是隐式转换,因为存在显式转换? ,我的目标是将图像存储在tbl_pictures中并返回视图模型,以便剃刀视图可以识别存储的内容 model.images?

返回视图模型无法识别实体框架

假设tbl_picstbl_pictures相同,那么看起来您遇到的问题是您正在尝试将单个对象传递给您的IEnumerable在视图中 模型。

而是创建一个新的ArrayList<T>或任何实现 IEnumerable 接口的东西,并用 pic 填充它并将其分配给 images 属性。

new MyViewModel
{
    images = new Telephone_Search.Models.tbl_pictures[] { pic };
}

由于@Matias,使用数组代替列表