5

我想知道如何更改模型的显示名称,并在实体框架中自定义错误消息。我尝试了以下但没有奏效。

    [Required(ErrorMessage = "Required .... :")]
    [Display(Name = "Name Agency : ")]
    [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)]
    [DataMemberAttribute()]
    public global::System.String Nag
    {
        get
        {
            //code
        }
        set
        {
           //code
        }
    }

这是我的表单背后的代码,用于将数据添加到我的数据库中。我省略了不相关的行。

 <% using (Html.BeginForm("addcar", "Agence", FormMethod.Post, new { @class = "search_form" }))
   { %>
    <%: Html.ValidationSummary(true) %>
        <div class="editor-label">
            <%: Html.LabelFor(model => model.Dmcv) %>
        </div>
        <div class="editor-field">
            <%: Html.EditorFor(model => model.Dmcv) %>
            <%: Html.ValidationMessageFor(model => model.Dmcv) %>
        </div>

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

        // Similaire code

        <p>
            <input type="submit" value="Create" />
        </p>
<% } %>
4

2 回答 2

10

改为[Display(Name = "Name Agency")]改为[DisplayName("Name Agency")]

于 2012-04-11T15:53:09.383 回答
3

首先你需要参考这个:

using System.ComponentModel.DataAnnotations;

对于更改列的显示名称,实际上 [Display(Name="Name Agency")] 是可以的。我在我的项目中使用它。

对于错误信息

[Required(ErrorMessage="Required...")]

我读到,如果您使用实体框架设计器,这可能不起作用,因为设计器会一遍又一遍地覆盖您的更改,那么您将需要使用如下元数据类型:

[MetadataType(typeof(MetadataMyClass))]
public partial class myclass
{
}

//data annotations here
public class MetadataMyClass
{
  [Required(ErrorMessage = "Required...")]
  [Display(Name="Column Name")]
  public global:: System.String Nag
  {
    // ... etc, etc...
  }
}
于 2013-09-27T18:57:13.307 回答