1

C# と SQL Server 2005
を使用して ASP .Net MVC 3 アプリケーションを開発しています。Entity Framework と Code First Method も使用しています。
いくつかの属性を含むモデル 'Poste' があります。
コントローラーを作成すると、Poste のビュー (作成、編集、削除...) が自動的に作成されます。
このモデルには外部キーがあります。
この外部キーの値は「DropDownList」に表示されます。
問題は、これらの値が外部キーの正しいテーブルに関連付けられていないことです。

詳細を説明
するには:次の3つのテーブルがあります:

  • Poste ( ID_Poste , Nom_Poste,...,#ID_Ligne)
  • ライン( ID_Ligne , #ID_UF)
  • UF ( ID_UF )

私のフォームでは、通常は DropDownList を使用してID_Ligne (Poste テーブルの外部キー) を表示しますが、実際には、表示される値はテーブルUF (正確には ID_UF) のものです。
つまり、表 UF の射影です。
理由はわかりません。
英語で申し訳ありませんが、、、十分に明確ではありません。もっと説明しようと思います。
Poste のモデルは次のとおりです。

namespace MvcApplication2.Models
{
    public class Poste
    {
        [Required]
        [Key]
        [Display(Name = "ID Poste :")]
        public string ID_Poste { get; set; }

        [Required]
        [Display(Name = "Nom Poste:")]
        public string nom_Poste { get; set; }

        [Required]
        [Display(Name = "Application :")]
        public string Application { get; set; }

        [Required]
        [Display(Name = "In Poste :")]
        public string In_Po { get; set; }

        [Required]
        [Display(Name = "Out Poste :")]
        public string Out_Po { get; set; }

        [Required]
        [Display(Name = "Etat :")]
        public string Etat { get; set; }

        [Required]
        [ForeignKey("Ligne")]
        [Display(Name = "ID Ligne :")]
        public string ID_Ligne { get; set; }

        [Required]
        [Display(Name = "Mouvement :")]
        public string Mouvement { get; set; }

        public virtual Ligne Ligne { get; set; }
        public IEnumerable<Ligne> Lignes { get; set; }

        public virtual ICollection<Poste> Postes { get; set; }
    }
}
}

そして、これはコントローラーです:

namespace MvcApplication2.Controllers
{ 
    public class PosteController : Controller
    {
        private GammeContext db = new GammeContext();

        //
        // GET: /Poste/

        public ViewResult Index()
        {
            var postes = db.Postes.Include(p => p.Ligne);
            return View(postes.ToList());
        }

        //
        // GET: /Poste/Details/5

        public ViewResult Details(string id)
        {
            Poste poste = db.Postes.Find(id);
            return View(poste);
        }

        //
        // GET: /Poste/Create

        public ActionResult Create()
        {
            ViewBag.ID_Ligne = new SelectList(db.Lignes, "ID_Ligne", "ID_UF");
            return View();
        } 

        //
        // POST: /Poste/Create

        [HttpPost]
        public ActionResult Create(Poste poste)
        {
            if (ModelState.IsValid)
            {
                db.Postes.Add(poste);
                db.SaveChanges();
                return RedirectToAction("Index");  
            }

            ViewBag.ID_Ligne = new SelectList(db.Lignes, "ID_Ligne", "ID_UF", poste.ID_Ligne);
            return View(poste);
        }

        //
        // GET: /Poste/Edit/5

        public ActionResult Edit(string id)
        {
            Poste poste = db.Postes.Find(id);
            ViewBag.ID_Ligne = new SelectList(db.Lignes, "ID_Ligne", "ID_UF", poste.ID_Ligne);
            return View(poste);
        }

        //
        // POST: /Poste/Edit/5

        [HttpPost]
        public ActionResult Edit(Poste poste)
        {
            if (ModelState.IsValid)
            {
                db.Entry(poste).State = EntityState.Modified;
                db.SaveChanges();
                return RedirectToAction("Index");
            }
            ViewBag.ID_Ligne = new SelectList(db.Lignes, "ID_Ligne", "ID_UF", poste.ID_Ligne);
            return View(poste);
        }

        //
        // GET: /Poste/Delete/5

        public ActionResult Delete(string id)
        {
            Poste poste = db.Postes.Find(id);
            return View(poste);
        }

        //
        // POST: /Poste/Delete/5

        [HttpPost, ActionName("Delete")]
        public ActionResult DeleteConfirmed(string id)
        {            
            Poste poste = db.Postes.Find(id);
            db.Postes.Remove(poste);
            db.SaveChanges();
            return RedirectToAction("Index");
        }

        protected override void Dispose(bool disposing)
        {
            db.Dispose();
            base.Dispose(disposing);
        }
    }
}

最後に Create のビュー:

<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.master" Inherits="System.Web.Mvc.ViewPage<MvcApplication2.Models.Poste>" %>

<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
    Create
</asp:Content>

<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">

<h2>Ajouter</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>Poste</legend>

        <div class="editor-label">
            <%: Html.LabelFor(model => model.ID_Poste) %>
        </div>
        <div class="editor-field">
            <%: Html.EditorFor(model => model.ID_Poste) %>
            <%: Html.ValidationMessageFor(model => model.ID_Poste) %>
        </div>

        <div class="editor-label">
            <%: Html.LabelFor(model => model.nom_Poste) %>
        </div>
        <div class="editor-field">
            <%: Html.EditorFor(model => model.nom_Poste) %>
            <%: Html.ValidationMessageFor(model => model.nom_Poste) %>
        </div>

        <div class="editor-label">
            <%: Html.LabelFor(model => model.Application) %>
        </div>
        <div class="editor-field">
            <%: Html.EditorFor(model => model.Application) %>
            <%: Html.ValidationMessageFor(model => model.Application) %>
        </div>

        <div class="editor-label">
            <%: Html.LabelFor(model => model.In_Po) %>
        </div>
        <div class="editor-field">
            <%: Html.EditorFor(model => model.In_Po) %>
            <%: Html.ValidationMessageFor(model => model.In_Po) %>
        </div>

        <div class="editor-label">
            <%: Html.LabelFor(model => model.Out_Po) %>
        </div>
        <div class="editor-field">
            <%: Html.EditorFor(model => model.Out_Po) %>
            <%: Html.ValidationMessageFor(model => model.Out_Po) %>
        </div>

        <div class="editor-label">
            <%: Html.LabelFor(model => model.Etat) %>
        </div>
        <div class="editor-field">
            <%: Html.EditorFor(model => model.Etat) %>
            <%: Html.ValidationMessageFor(model => model.Etat) %>
        </div>



        <div class="editor-label">
            <%: Html.LabelFor(model => model.ID_Ligne, "Ligne") %>
        </div>
        <div class="editor-field">
            <%: Html.DropDownList("ID_Ligne", String.Empty) %>
            <%: Html.ValidationMessageFor(model => model.ID_Ligne) %>
        </div>

        <div class="editor-label">
            <%: Html.LabelFor(model => model.Mouvement) %>
        </div>
        <div class="editor-field">
            <%: Html.EditorFor(model => model.Mouvement) %>
            <%: Html.ValidationMessageFor(model => model.Mouvement) %>
        </div>

        <p>
            <input type="submit" value="Ajouter" />
            <input type="reset" value="Vider" />
        </p>
    </fieldset>
<% } %>

<div>
    <%: Html.ActionLink("Retour à la liste", "Index") %>
</div>

</asp:Content>

Ps : 実行後、新しい列(Poste_ID_Poste)が私のベースの 2 つのテーブル (Poste と Ligne) に自動的に作成されます。

4

1 に答える 1