Wyświetlana nazwa w ramach Data Entity

Zastanawiam się, jak zmienić nazwę wyświetlaną i komunikat o błędzie w strukturze jednostki danych. Próbowałem tak, ale to nie zadziałało.

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

to jest mój widok tylko formularz (część mojego formularza, ponieważ to wszystko jest podobne do tego) pozwala mi dodawać nowe dane do mojego Db:

<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>
<% } %>
</code>

questionAnswers(2)

yourAnswerToTheQuestion