2

为了体验 Entity Framework 的新功能,我创建了一个新的 MVC 4 互联网应用程序。
我将它连接到现有数据库并使用 dbContext 生成器生成模型类。

通过运行应用程序,我在编辑表单时遇到了一些验证错误。作为 DateTime 字段的示例,如果将日期插入为“12/10/2012”而不是 2012-10-12(如在 SQ Server 表示法中),系统会抱怨。
我试图在项目中找到验证代码,但在生成的代码中的任何地方都找不到。

我的模型类之一如下:

public partial class Artist
{
    public Artist()
    {
    }

    public int Id { get; set; }
    public string Name { get; set; }
    public Nullable<System.DateTime> DateOfBirth { get; set; }

    public virtual Countries Countries { get; set; }
}

如果使用数据库优先方法,如何自定义验证错误?
如果我用我的验证属性装饰模型,那么一旦再次生成模型类,它们就会被删除。

此外,在强制使用现有数据库的“现实世界”项目中,开发模型类的最佳方法是什么?
通过添加具有相同名称的部分类来扩展自动生成的类?

编辑(介绍了视图的一部分):

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

<fieldset>
    <legend>Movie</legend>

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

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

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

2 回答 2

6

好吧,你总是可以使用元数据类

public partial class ArtistMetaData
{
   [Required]
   [StringLength(20)]
   public string Name;//it can be a field instead of a property, must just have the same name and type than in your Model class
}

和部分课程

[MetadataType(typeof(ArtistMetaData)]
public partial class Artist {
}

或者(我的首选解决方案)您可以使用外部验证库,例如出色的FluentValidation

默认情况下,您有一个“基本”验证(可以在 global.asax 中删除),检查:非 nullables 值...不为 null(如默认的 Required 属性),并且值是正确的类型.

于 2012-10-09T19:50:20.027 回答
1

检查您的浏览器和机器文化设置,然后检查 jquery 验证文化。

因为我有西班牙语配置,所以我倾向于遇到这个问题,但是 mvc 带有英文日期和货币格式等。例如 dd/mm/yyyy vs mm/dd/yyyy

您还可以根据需要使用正则表达式属性来验证字段。

于 2012-10-10T11:14:08.360 回答