0

編集でビデオにタグを追加しようとすると、タグのリストに範囲外の例外がある理由がわかりません。ilist は、必要に応じて項目の新しい位置を自動的に作成すると思っていました... タグは、特定のビデオに関連付けられているはずです。そのため、新しいタグを生成して動画に関連付ける必要があります。ただし、Session.save の代わりに Session.merge を使用すると、新しいタグではなく新しいビデオが生成されるなど、少しいじりましたが、tags[i].tagdescription をそのままにしておくと、outofbounds 例外が生成されます。答えは明らかだと思いますが、私にはわかりません。

ビューを編集

@model PatientEducationAdmin.Models.Domain.Video

@{
    ViewBag.Title = "Edit";
}
@*putting black outline on text boxes*@

@*editors location*@
<div id="div8class" style="background-color: beige; width: 936px; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px">
    <h2>Edit</h2>

    @using (Html.BeginForm())
    {
        @Html.ValidationSummary(true)



@*edit for tags*@


        <div class="editor-field">
            <table style="text-align: center; align-content: center; float: none; margin: 10px auto; width: 500px;">
                <tr>

                    <th>@Html.DisplayNameFor(model => model.Tags[0].TagID)</th>
                    <th>@Html.DisplayNameFor(model => model.Tags)</th>

                </tr>



                @{int i = 0;}
                @using PatientEducationAdmin.Models.DAL.Repositories
                @{ TagRepository tagDB = new TagRepository();}
                @foreach (var item in Model.Tags)
                {
                    <tr>

                        <td>
                            @Html.TextBoxFor(modelitem => item.TagID, new { @readonly = "readonly" })


                        </td>
                        <td>
                            @Html.TextBoxFor(modelItem => item.TagDescription, new { @readonly = "readonly" })


                        </td>
                        <td>
                            <button type="button" onclick="delTag()">Delete</button>
                            @*want a button to delete a specific tag or disassociate it from video...*@

                        </td>

                    </tr>
                    <tr>

                        @{i++;}
                    </tr>
                }

            </table>
            <div class="editor-field">

                @Html.EditorFor(model => model.Tags[i], new { id = "tagadd" })
                <button>Add Tag</button>
            </div>
        </div>
        <p>
            <input type="submit" value="Save" />
        </p>

    }

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

    @section Scripts {
        @Scripts.Render("~/bundles/jqueryval")
    }
</div>

ビデオコントローラー

using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Entity;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using PatientEducationAdmin.Models.Domain;
using PatientEducationAdmin.Models;
using PatientEducationAdmin.Models.DAL.Repositories;


namespace PatientEducationAdmin.Controllers
{
    public class VideoController : Controller
    {

        private VideoRepository dbVideo = new VideoRepository();
        private TagRepository dbTag = new TagRepository();


        //
        // GET: /CRUD/Edit/5

        public ActionResult Edit(int id = 0)
        {
            Video video = dbVideo.GetVideo(id);

            if (video == null)
            {
                return HttpNotFound();
            }
            return View(video);
        }

        //
        // POST: /CRUD/Edit/5

        [HttpPost]
        public ActionResult Edit(Video video, Tag[] tags)
        {

            if (ModelState.IsValid)
            {

                foreach (var tag in video.Tags)
                {
                    dbTag.Save(tag);
                    tag.Videos.Add(video);
                }

                dbVideo.Save(video);

                return RedirectToAction("SearchVideos");
            }
            return View(video);
        }

コール スタック

mscorlib.dll!System.ThrowHelper.ThrowArgumentOutOfRangeException() + 0x49 bytes 

mscorlib.dll!System.Collections.Generic.List.this[int].get(int インデックス = 1) + 0x23 バイト

NHibernate.dll!NHibernate.Collection.Generic.PersistentGenericBag<PatientEducationAdmin.Models.Domain.Tag>.System.Collections.Generic.IList<T>.get_Item(int index = 1) + 0x87 bytes 
[Lightweight Function]  


System.Web.Mvc.dll!System.Web.Mvc.ExpressionUtil.CachedExpressionCompiler.Compiler<PatientEducationAdmin.Models.Domain.Video,PatientEducationAdmin.Models.Domain.Tag>.CompileFromFingerprint.AnonymousMethod__4(PatientEducationAdmin.Models.Domain.Video model = {PatientEducationAdmin.Models.Domain.Video}) + 0x42 bytes 


System.Web.Mvc.dll!System.Web.Mvc.ModelMetadata.FromLambdaExpression<PatientEducationAdmin.Models.Domain.Video,PatientEducationAdmin.Models.Domain.Tag>.AnonymousMethod__2() + 0x88 bytes   


System.Web.Mvc.dll!System.Web.Mvc.ModelMetadata.Model.get() + 0x3c bytes    

System.Web.Mvc.dll!System.Web.Mvc.Html.TemplateHelpers.TemplateHelper(System.Web.Mvc.HtmlHelper html = {System.Web.Mvc.HtmlHelper},

System.Web.Mvc.ModelMetadata メタデータ = {System.Web.Mvc.CachedDataAnnotationsModelMetadata}、文字列 htmlFieldName = "Tags[1]"、文字列 templateName = null、System.Web.UI.WebControls.DataBoundControlMode モード = 編集、オブジェクト additionalViewData = { id = "tagadd" },

System.Web.Mvc.Html.TemplateHelpers.ExecuteTemplateDelegate executeTemplate = {メソッド = {System.Reflection.RuntimeMethodInfo}}) + 0x94 バイト
System.Web.Mvc.dll!System.Web.Mvc.Html.TemplateHelpers.TemplateHelper(System. Web.Mvc.HtmlHelper html = {System.Web.Mvc.HtmlHelper}、System.Web.Mvc.ModelMetadata メタデータ = {System.Web.Mvc.CachedDataAnnotationsModelMetadata}、文字列 htmlFieldName = "Tags[1]"、文字列 templateName = null 、System.Web.UI.WebControls.DataBoundControlMode モード = 編集、オブジェクト additionalViewData = { id = "tagadd" }) + 0x5f バイト
System.Web.Mvc.dll!System.Web.Mvc.Html.TemplateHelpers.TemplateFor(System. Web.Mvc.HtmlHelper html = {System.Web.Mvc.HtmlHelper},

System.Linq.Expressions.Expression> 式 = {System.Linq.Expressions.Expression>}、文字列 templateName = null、文字列 htmlFieldName = null、System.Web.UI.WebControls.DataBoundControlMode モード = 編集、オブジェクト additionalViewData = {id = "タグ追加" },

System.Web.Mvc.Html.TemplateHelpers.TemplateHelperDelegate templateHelper = {Method = {System.Reflection.RuntimeMethodInfo}}) + 0xe4 バイト
System.Web.Mvc.dll!System.Web.Mvc.Html.TemplateHelpers.TemplateFor(System. Web.Mvc.HtmlHelper html = {System.Web.Mvc.HtmlHelper},

System.Linq.Expressions.Expression> 式 = {System.Linq.Expressions.Expression>}、文字列 templateName = null、文字列 htmlFieldName = null、System.Web.UI.WebControls.DataBoundControlMode モード = 編集、オブジェクト additionalViewData = {id = "tagadd" }) + 0x8d バイト
System.Web.Mvc.dll!System.Web.Mvc.Html.EditorExtensions.EditorFor(System.Web.Mvc.HtmlHelper html = {System.Web.Mvc.HtmlHelper},

System.Linq.Expressions.Expression> 式 = {System.Linq.Expressions.Expression>}、オブジェクト additionalViewData = { id = "tagadd" }) + 0x5e バイト

App_Web_gfall1nh.dll!ASP._Page_Views_Video_Edit_cshtml.Execute() 138 行目 + 0x27b バイト C# System.Web.WebPages.dll!System.Web.WebPages.WebPageBase.ExecutePageHierarchy() + 0xc6 バイト System.Web.Mvc.dll!System.Web .Mvc.WebViewPage.ExecutePageHierarchy() + 0x78 バイト
System.Web.WebPages.dll!System.Web.WebPages.StartPage.RunPage() + 0x12 バイト
System.Web.WebPages.dll!System.Web.WebPages.StartPage.ExecutePageHierarchy () + 0x3f バイト
System.Web.WebPages.dll!System.Web.WebPages.WebPageBase.ExecutePageHierarchy(System.Web.WebPages.WebPageContext pageContext、System.IO.TextWriter ライター、System.Web.WebPages.WebPageRenderingBase startPage) + 0x4dバイト
System.Web.Mvc.dll!System.Web.Mvc.RazorView.RenderView(System.Web.Mvc.ViewContext viewContext = {System.Web.Mvc.ViewContext}, System.IO.TextWriter writer = {System.Web.HttpWriter }、オブジェクト インスタンス = {ASP._Page_Views_Video_Edit_cshtml}) + 0x2e8 バイト
System.Web.Mvc.dll!System.Web.Mvc.BuildManagerCompiledView.Render(System.Web.Mvc.ViewContext viewContext = {System.Web.Mvc.ViewContext} 、System.IO.TextWriter ライター = {System.Web.HttpWriter}) + 0x17f バイト
System.Web.Mvc.dll!System.Web.Mvc.ViewResultBase.ExecuteResult(System.Web.Mvc.ControllerContext コンテキスト = {System.Web.Mvc.ControllerContext}) + 0x1b0 バイト System.Web.Mvc.dll!System. Web.Mvc.ControllerActionInvoker.InvokeActionResult(System.Web.Mvc.ControllerContext controllerContext = {System.Web.Mvc.ControllerContext}, System.Web.Mvc.ActionResult actionResult = {System.Web.Mvc.ViewResult}) + 0x28 バイト
システム.Web.Mvc.dll!System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters.AnonymousMethod_ 17() + 0x4b バイト
System.Web.Mvc.dll!System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter(System.Web.Mvc.IResultFilter フィルター = {PatientEducationAdmin.Controllers.VideoController}、System.Web.Mvc.ResultExecutingContext preContext = {System.Web.Mvc .ResultExecutingContext}, System.Func continuation = {Method = {System.Reflection.RuntimeMethodInfo}}) + 0xb2 バイト
System.Web.Mvc.dll!System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters.AnonymousMethod
_19() + 0x49 バイト
System.Web.Mvc.dll!System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(System.Web.Mvc.ControllerContext controllerContext = {System.Web.Mvc.ControllerContext}、System.Collections.Generic.IList フィルター = カウント = 1、 System.Web.Mvc.ActionResult actionResult = {System.Web.Mvc.ViewResult}) + 0x130 バイト
System.Web.Mvc.dll!System.Web.Mvc.Async.AsyncControllerActionInvoker.BeginInvokeAction.AnonymousMethod_ 20() + 0x9c バイト
システム.Web.Mvc.dll!System.Web.Mvc.Async.AsyncControllerActionInvoker.BeginInvokeAction.AnonymousMethod
_22(System.IAsyncResult asyncResult = {System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult}) + 0x44 バイト
System.Web.Mvc. dll!System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult.End() + 0x89 バイト
System.Web.Mvc.dll!System.Web.Mvc.Async.AsyncResultWrapper.End(System.IAsyncResult asyncResult = {System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult}、オブジェクト タグ = {object}) + 0x39 バイト
システム.Web.Mvc.dll!System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction(System.IAsyncResult asyncResult = {System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult}) + 0x29 バイト System.Web.Mvc.dll!System .Web.Mvc.Controller.BeginExecuteCore.AnonymousMethod_ 18(System.IAsyncResult asyncResult = {System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult}) + 0x29 バイト
System.Web.Mvc.dll!System.Web.Mvc.Async. AsyncResultWrapper.MakeVoidDelegate.AnonymousMethod
_3(System.IAsyncResult ar = {System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult}) + 0x30 バイト
System.Web.Mvc.dll!System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult.End() + 0x98 バイト
System.Web.Mvc.dll!System.Web.Mvc.Async.AsyncResultWrapper.End(System.IAsyncResult asyncResult = {System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult}、オブジェクト タグ = {object}) + 0x3c バイト
システム.Web.Mvc.dll!System.Web.Mvc.Async.AsyncResultWrapper.End(System.IAsyncResult asyncResult = {System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult}、オブジェクト タグ = {object}) + 0x29 バイト
システム。 Web.Mvc.dll!System.Web.Mvc.Controller.EndExecuteCore(System.IAsyncResult asyncResult = {System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult}) + 0x2d バイト
System.Web.Mvc.dll!System.Web.Mvc.Async.AsyncResultWrapper.MakeVoidDelegate.AnonymousMethod_ 3(System.IAsyncResult ar = {System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult}) + 0x30 バイト
System.Web.Mvc .dll!System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult.End() + 0x98 バイト
System.Web.Mvc.dll!System.Web.Mvc.Async.AsyncResultWrapper.End(System.IAsyncResult asyncResult = {System.Web .Mvc.Async.AsyncResultWrapper.WrappedAsyncResult}、オブジェクト タグ = {object}) + 0x3c バイト
System.Web.Mvc.dll!System.Web.Mvc.Async.AsyncResultWrapper.End(System.IAsyncResult asyncResult = {System.Web. Mvc.Async.AsyncResultWrapper.WrappedAsyncResult}、オブジェクト タグ = {object}) + 0x29 バイト
System.Web.Mvc.dll!System.Web.Mvc.Controller.EndExecute(System.IAsyncResult asyncResult = {System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult}) + 0x28 バイト
System.Web.Mvc.dll!System. Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute(System.IAsyncResult asyncResult = {System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult}) + 0x28 バイト
System.Web.Mvc.dll!System. Web.Mvc.MvcHandler.BeginProcessRequest.AnonymousMethod
_3(System.IAsyncResult asyncResult = {System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult}) + 0x2e バイト
System.Web.Mvc.dll!System.Web.Mvc.Async.AsyncResultWrapper .MakeVoidDelegate.AnonymousMethod__3(System.IAsyncResult ar = {System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult}) + 0x30 バイト
System.Web.Mvc.dll!System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult.End() + 0x98 バイト
System.Web.Mvc.dll!System.Web.Mvc.Async.AsyncResultWrapper.End(System.IAsyncResult asyncResult = {System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult}、オブジェクト タグ = {object}) + 0x3c バイト
System.Web.Mvc.dll!System.Web.Mvc.Async.AsyncResultWrapper.End(System.IAsyncResult asyncResult = {System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult}、オブジェクト タグ = {object}) + 0x29 バイト
System.Web.Mvc.dll!System.Web.Mvc.MvcHandler.EndProcessRequest(System.IAsyncResult asyncResult = {System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult}) + 0x29 バイト System.Web.Mvc.dll!System. Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest(System.IAsyncResult 結果 = {System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult}) + 0x27 バイト System.Web.dll!System.Web.HttpApplication.CallHandlerExecutionStep. System.Web.HttpApplication.IExecutionStep.Execute() + 0x242 バイト
System.Web.dll!System.Web.HttpApplication.ExecuteStep(System.Web.HttpApplication.IExecutionStep step = {System.Web.HttpApplication.CallHandlerExecutionStep}, ref bool completedSynchronously = false) + 0x9c バイト System.Web.dll!System. Web.HttpApplication.PipelineStepManager.ResumeSteps(System.Exception エラー) + 0x474 バイト System.Web.dll!System.Web.HttpApplication.BeginProcessRequestNotification(System.Web.HttpContext コンテキスト、System.AsyncCallback cb) + 0x60 バイト System.Web.dll !System.Web.HttpRuntime.ProcessRequestNotificationPrivate(System.Web.Hosting.IIS7WorkerRequest wr = {System.Web.Hosting.IIS7WorkerRequest}, System.Web.HttpContext コンテキスト = {System.Web.HttpContext}) + 0xbb バイト
System.Web.dll!System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper (System.IntPtr rootedObjectsPointer、System.IntPtr nativeRequestContext = 494414820、System.IntPtr moduleData、int フラグ) + 0x245 バイト
System.Web.dll!System.Web.Hosting .PipelineRuntime.ProcessRequestNotification(System.IntPtr rootedObjectsPointer, System.IntPtr nativeRequestContext, System.IntPtr moduleData, int flags) + 0x1f バイト
[ネイティブからマネージドへの移行]
[マネージドからネイティブへの移行]
System.Web.dll!System.Web.Hosting. PipelineRuntime.ProcessRequestNotificationHelper(System.IntPtr rootedObjectsPointer、System.IntPtr nativeRequestContext、System.IntPtr moduleData、int フラグ) + 0x372 バイト
System.Web.dll!System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(System.IntPtr rootedObjectsPointer, System.IntPtr nativeRequestContext, System.IntPtr moduleData, int flags) + 0x1f バイト
[Appdomain 遷移]

4

1 に答える 1