数据注释[Remote]在MVC 5中不存在?

时间:2014-11-25 19:38:02

标签: c# asp.net-mvc asp.net-mvc-5

我试图在我的应用程序中检查唯一的用户名。我在网上搜索并找到了一个使用[Remote]数据注释的好解决方案。但是它似乎不再存在于MVC 5中了? 以下是我在模型中的参考资料:

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity.Spatial;

如果在MVC 5中不再支持[Remote],你能否建议一种在创建新条目时验证数据库唯一性的最佳方法? 谢谢!

1 个答案:

答案 0 :(得分:2)

[Remote]属性位于System.Web.Mvc程序集中。您需要在using语句中包含它才能使用[Remote]属性。

以下是MSDN页面引用[Remote]属性以及您的阅读。