0

我有一个名为 FileName, string 的数据库字段。当我加载相对编辑项视图时,对该字段的引用会导致错误:

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

如果我删除这条线:@Html.EditorFor(model => model.FileName) 一切都很好。
字段名正确且存在于表中。错误是:

Format exception unhandled by user code Index (zero based) must be greater than or equal to zero and less than the size of the argument list.

该字段是 100 个字符的字符串,包含 30 个字符的字符串,我不想在任何地方更改数据类型。请问有什么想法吗?

4

0 回答 0