1

画像/ファイルをasp.netmvc3プロジェクトのsql-databaseに保存したいと思います。他に何もせずに画像をデータベースに保存しなければならない例をいくつか見つけました。コントローラから「Create」メソッドを使用してデータベースに「Inzending」インスタンスを追加する場合は、ファイルをバイト配列に配置する必要もあります。nullのフィールドはないため、すべての情報を同時にデータベースに挿入する必要があります。誰かがこれを手伝ってくれることを願っています。私は学校でそれを始めたばかりで、これは私が解決しなければならない最初の本当の大きな問題です(私は解決するのが非常に難しいと思います)。私がすでに書いた私のコードのいくつか:

コントローラ:

[HttpPost]
    public ActionResult Create(INZENDING inzending)
    {

        string user = User.Identity.Name;
        var users = db.aspnet_Users.Single(p => p.UserName == user).UserId;
        inzending.Userid = users;

        int id = db.INZENDINGs.Count() + 1;
        inzending.InzendingNr = id;
        if (ModelState.IsValid)
        {

            db.INZENDINGs.Add(inzending);
            db.SaveChanges();
            return RedirectToAction("Index");  
        }
        ViewBag.ErfgoedNr = new SelectList(db.ERFGOEDFICHEs, "ErfgoedNr", "Naam", inzending.ErfgoedNr);
        ViewBag.Aard = new SelectList(db.INPUT_AARD, "Aard", "Aard", inzending.Aard);
        ViewBag.Type = new SelectList(db.INPUTTYPEs, "type", "type", inzending.Type);
        ViewBag.Status = new SelectList(db.STATUS, "Waarde", "Waarde", inzending.Status);
        return View(inzending);
    }

見る :

 @model Erfgoed.Models.INZENDING

 @{
ViewBag.Title = "Create";
 }

<h2>Create</h2>

  <script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script>
  <script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>

@using (Html.BeginForm()) {
@Html.ValidationSummary(true)
<fieldset>
    <legend>INZENDING</legend>

    <div class="editor-label">
        @Html.LabelFor(model => model.Titel)
    </div>
    <div class="editor-field">
        @Html.EditorFor(model => model.Titel)
        @Html.ValidationMessageFor(model => model.Titel)
    </div>

    <div class="editor-label">
        @Html.LabelFor(model => model.Auteur)
    </div>
    <div class="editor-field">
        @Html.EditorFor(model => model.Auteur)
        @Html.ValidationMessageFor(model => model.Auteur)
    </div>

    <div class="editor-label">
        @Html.LabelFor(model => model.Datum)
    </div>
    <div class="editor-field">
        @Html.EditorFor(model => model.Datum)
        @Html.ValidationMessageFor(model => model.Datum)
    </div>

    <div class="editor-label">
        @Html.LabelFor(model => model.bestandsgrootte)
    </div>
    <div class="editor-field">
        @Html.EditorFor(model => model.bestandsgrootte)
        @Html.ValidationMessageFor(model => model.bestandsgrootte)
    </div>

    <div class="editor-label">
        @Html.LabelFor(model => model.Type, "INPUTTYPE")
    </div>
    <div class="editor-field">
        @Html.DropDownList("Type", String.Empty)
        @Html.ValidationMessageFor(model => model.Type)
    </div>

    <div class="editor-label">
        @Html.LabelFor(model => model.Aard, "INPUT_AARD")
    </div>
    <div class="editor-field">
        @Html.DropDownList("Aard", String.Empty)
        @Html.ValidationMessageFor(model => model.Aard)
    </div>

    <div class="editor-label">
        @Html.LabelFor(model => model.ErfgoedNr, "ERFGOEDFICHE")
    </div>
    <div class="editor-field">
        @Html.DropDownList("ErfgoedNr", String.Empty)
        @Html.ValidationMessageFor(model => model.ErfgoedNr)
    </div>

    <div class="editor-label">
        @Html.LabelFor(model => model.bestand, "Bestand");
     </div>

</fieldset>

 }
 <div>
     @Html.ActionLink("Back to List", "Index")
 </div>

モデル:

namespace Erfgoed.Models
{
using System;
using System.Collections.Generic;

public partial class INZENDING
{
    public int InzendingNr { get; set; }
    public string Titel { get; set; }
    public string Auteur { get; set; }
    public System.DateTime Datum { get; set; }
    public string bestandsgrootte { get; set; }
    public string Type { get; set; }
    public string Aard { get; set; }
    public byte[] bestand { get; set; }
    public System.Guid Userid { get; set; }
    public int ErfgoedNr { get; set; }
    public string Status { get; set; }

    public virtual aspnet_Membership aspnet_Membership { get; set; }
    public virtual ERFGOEDFICHE ERFGOEDFICHE { get; set; }
    public virtual INPUT_AARD INPUT_AARD { get; set; }
    public virtual INPUTTYPE INPUTTYPE { get; set; }
    public virtual STATUS STATUS1 { get; set; }
 }
}
4

1 に答える 1

0
    [HttpPost]
    public ActionResult Create(HttpPostedFileBase file, FormCollection collection)
    {
        var attachment = new Attachment();
        if(TryUpdateModel(attachment))
        {
            long length =
                file.InputStream.Length;
            attachment.Data = new byte[length];
            file.InputStream.Read(attachment.Data, 0, (int)length);
            attachmentRepository.Add(attachment);
            attachmentRepository.Save();

            return RedirectToAction("Index");
        }

        return null;
    }

これが私がmssqlデータベースにファイルを保存する方法です。私があなたの質問を間違って理解した場合は申し訳ありません

于 2012-04-26T21:04:20.793 に答える