gpt4 book ai didi

asp.net-mvc - 数据 Entity Framework 中的显示名称

转载 作者:行者123 更新时间:2023-12-04 22:23:39 25 4
gpt4 key购买 nike

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

    [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>
<% } %>

最佳答案

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

关于asp.net-mvc - 数据 Entity Framework 中的显示名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10107934/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com