Сценарий
Мне нужно хранить медиафайлы в моей базе данных как VarBinary, а изображения как nvarchar или VarBinary (не определено). Я использую MVC5 и фреймворк. Я уже сделал CRUD-контроллер для другой таблицы в базе данных, которая не содержит медиа-файлов или изображений, и это работает правильно.
Что я сделал до сих пор
Я создал контроллер категорий, который так же прост, как и контроллеры, поскольку все типы данных для этой таблицы являются текстом или числами. Я повторил эту логику проектирования для моего контроллера MediaFiles и контроллера изображений, но мне не хватает знаний, чтобы адаптировать его для обработки преобразования этого файла и сохранения в базе данных для медиафайлов.
Модель
using System.Web;
namespace MediaOrganiser.Models
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity.Spatial;
public partial class Image
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public Image()
{
MediaFiles = new HashSet<MediaFile>();
}
public long ImageID { get; set; }
[Required]
[StringLength(255)]
public string Name { get; set; }
[Required]
public string FilePath { get; set; }
public HttpPostedFileBase ImageFile { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<MediaFile> MediaFiles { get; set; }
}
}
Контроллер
using System;
using System.Collections.Generic;
using System.Data.Entity.Infrastructure;
using System.IO;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using MediaOrganiser.Models;
using System.ComponentModel.DataAnnotations.Schema;
namespace MediaOrganiser.Controllers
{
public class ImageController : Controller
{
IMediaRepository mediaRepository = null;
public ImageController(IMediaRepository mediaRepository)
{
this.mediaRepository = mediaRepository;
}
public ImageController()
: this(new SQLMediaRepository())
{
}
// GET: Image
public ActionResult Index()
{
return View();
}
// GET: Image/Details/5
public ActionResult Details(int id)
{
return View();
}
// GET: Image/Create
public ActionResult Create()
{
Image image = new Image();
return View(image);
}
// POST: Image/Create
[HttpPost]
public ActionResult Create(Image im)
{
string fileName = Path.GetFileNameWithoutExtension(im.ImageFile.FileName);
string extension = Path.GetExtension(im.ImageFile.FileName);
fileName = fileName + DateTime.Now.ToString("yymmssfff") + extension;
im.FilePath = "~/Images/" + fileName;
fileName = Path.Combine(Server.MapPath("~/Images/") + fileName);
im.ImageFile.SaveAs(fileName);
using (MediaEntities db = new MediaEntities())
{
db.Images.Add(im);
db.SaveChanges();
}
ModelState.Clear();
return View();
}
// GET: Image/Edit/5
public ActionResult Edit(int id)
{
return View();
}
// POST: Image/Edit/5
[HttpPost]
public ActionResult Edit(int id, FormCollection collection)
{
try
{
// TODO: Add update logic here
return RedirectToAction("Index");
}
catch
{
return View();
}
}
// GET: Image/Delete/5
public ActionResult Delete(int id)
{
return View();
}
// POST: Image/Delete/5
[HttpPost]
public ActionResult Delete(int id, FormCollection collection)
{
try
{
// TODO: Add delete logic here
return RedirectToAction("Index");
}
catch
{
return View();
}
}
}
}
Создать вид
@model MediaOrganiser.Models.Image
@{
ViewBag.Title = "Create";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<h2>Create</h2>
@using (Html.BeginForm("Create", "Image", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
@Html.AntiForgeryToken()
<div class="form-horizontal">
<h4>Image</h4>
<hr />
@Html.ValidationSummary(true, "", new { @class = "text-danger" })
<div class="form-group">
@Html.LabelFor(model => model.Name, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.EditorFor(model => model.Name, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.Name, "", new { @class = "text-danger" })
</div>
</div>
<div class="form-group">
@Html.LabelFor(model => model.FilePath, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
<input type="file" name="ImageFile" required />
@Html.ValidationMessageFor(model => model.FilePath, "", new { @class = "text-danger" })
</div>
</div>
<div class="form-group">
<div class="col-md-offset-2 col-md-10">
<input type="submit" value="Create" class="btn btn-default" />
</div>
</div>
</div>
}
<div>
@Html.ActionLink("Back to List", "Index")
</div>
@section Scripts {
@Scripts.Render("~/bundles/jqueryval")
}
Что я хочу
В момент, когда я пытаюсь создать изображение, я получаю следующее сообщение об ошибке:
Значение не может быть нулевым. Имя параметра: entitySet
Я хочу иметь возможность создавать CRUD-методы в C # для хранения следующего в базе данных:
Имя - nvarchar (255)
FilePath - nvarchar (Max)
Я следую этому уроку: https://www.youtube.com/watch?v=5L5W-AE-sEs
Любая помощь очень ценится, спасибо.