SkyoceanHome
Home
Privacy
ダウンロード
SkyShop
Updated Information
記事編集
日付
ジャンルのカテゴリ―名
名前を選択して下さい。
Contexts
Controllers
Databases
Htmls
JavaScripts
Models
MVCTutorials
Others
Styles
Views
タイトル
内容の要旨
<p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;' id="isPasted"> 下記はGenre(1)とArticle(多)のクラス。記述例です。</p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;'>public class Genre</p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;'> {</p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;'> <strong> public int GenreId { get; set; }</strong></p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;'><strong> public string Name { get; set; } = string. Empty;</strong></p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;'><strong> public string Description { get; set; } = string.Empty;</strong></p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;'><strong> public string ImageUrl { get; set; } = string.Empty;</strong></p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;'><strong> <span style="color:#00B050;"> //Navigation property</span></strong></p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;'><strong> public ICollection<Article> Articles { get; set; }</strong></p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;'> }</p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;'><br></p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;' id="isPasted"> public class Article</p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;'> {</p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;'> <strong> public int ArticleId { get; set; }</strong></p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;'><strong> </strong></p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;'><strong> public DateTime Posted { get; set; }</strong></p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;text-indent:10.5pt;'><strong><span style="color:#00B050;"> //外部キー</span></strong></p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;'><strong> public int GenreId { get; set; }</strong></p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;'><strong> </strong></p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;text-indent:15.75pt;'><strong>public string Title { get; set; } = string.Empty;</strong></p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;'><strong> </strong></p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;'><strong> public string Content { get; set; } = string.Empty;</strong></p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;'><strong> </strong></p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;'><strong> public string ImageUrl { get; set; } = string.Empty;</strong></p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;text-indent:15.75pt;'><strong><span style="color:#00B050;"> //Navigation Property</span></strong></p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;'><strong> public Genre Genre { get; set; }</strong></p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;'> }</p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;'>上記のモデルをMigration し、Databaseを作成すると多の側のControllerの</p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;'><strong>Createアクションには</strong></p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;'><span style="font-size: 11px; color: rgb(0, 168, 133);">// GET: Articles/Create</span></p><p><span style="font-size: 11px;">public IActionResult Create()</span></p><p><span style="font-size: 11px;">{</span></p><p><span style="font-size: 11px;"> <strong> </strong></span><span style="font-size: 14px;"><strong> ViewData["GenreId"] = new SelectList(_context.Genre, "GenreId", "GenreId");</strong></span></p><p><span style="font-size: 11px;"> return View();</span></p><p><span style="font-size: 11px;">}</span></p><p><span style="font-size: 12px;"><strong>Editアクションには</strong></span></p><p id="isPasted">// GET: Articles/Edit/5</p><p>public async Task<IActionResult> Edit(int? id)</p><p>{</p><p> if (id == null)</p><p> {</p><p> return NotFound();</p><p> }</p><p> var article = await _context.Article.FindAsync(id);</p><p> if (article == null)</p><p> {</p><p> return NotFound();</p><p> }</p><p> <strong> ViewData["GenreId"] = new SelectList(_context.Genre, "GenreId", "GenreId", article.GenreId);</strong></p><p> return View(article);</p><p>}</p><p><span style="font-size: 12px;">上記のViewDataが生成されます。<br></span></p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;'><span style="font-size: 12px;">これにより、双方の第3引数を、new SelectList(_context.Genre, "GenreId", "</span><span style="color: rgb(184, 49, 47); font-size: 12px;">Name</span><span style="font-size: 12px;">"); に変更して、</span></p><p style='margin:0mm;text-align:justify;font-size:14px;font-family:"游明朝",serif;'><span style="font-size: 12px;">Views/Articles/Create、Edit,両ページの”GenreId”フィールドの入力欄を、下記のようにドロップダウンリストにすることが出来ます。</span></p><p><span style="font-size: 12px;">下行は選択を案内する文字がないドロップダウン。</span></p><p><strong> <select asp-for="GenreId" class="form-control" asp-items="ViewBag.GenreId"></select></strong></p><p>下行は”名前を選択してください”という表示のあるドロップダウンです。</p><p> <strong>@Html.DropDownListFor(m => m.GenreId,(IEnumerable<SelectListItem>)ViewBag.GenreId,"名前を選択して下さ</strong></p><p><strong>い。",new { @class = "form-control" })</strong></p><p>下図は結果の表示です。</p>
添付画像
画像を変更
Back to List