在Entity Framework中的代码优先方法中的唯一约束中设置错误消息DataAnnotation

时间:2016-02-13 12:45:58

标签: asp.net-mvc-5 entity-framework-6

我制作了这个模型类。这里我将Email属性设置为唯一键。当我尝试插入现有的Email时,它会显示唯一的键错误。这很好,但我想在模型类中设置错误消息DataAnnotations。

以下是代码:

[String Length(450)]
[Index("IX_FirstAndSecond",1,IsUnique=true)]
public string Email { get; set; }

我该怎么做?

0 个答案:

没有答案