我目前正在重构我的项目,我不太确定如何处理业务验证错误。
目前我正在使用xVal库中的RulesException类,我相信这个库已经不再开发了所以我可能需要相应地更新我的代码...这里是我在域上的一个方法的示例模型:
public virtual void AddComment(ProfileComment comment)
{
// ensure account is active before sending a message
if (comment.FromAccount.AccountStatus != Enums.Common.AccountStatus.Active) throw new RulesException("", "Your account is not active");
// throw exception if user has blocked this user
if (HasUserBeenBlocked(comment.FromAccount)) throw new RulesException("", "User has blocked this action being performed.");
TotalComments++;
Comments.Add(comment);
}
然后我在控制器级抓住这个ecxception,如下所示:
// process adding new comment
try
{
accountTasks.PostProfileComment(user, account, profileComment);
}
catch (RulesException ex)
{
ex.AddModelStateErrors(ModelState);
}
if (!ModelState.IsValid)
{
return Json(ModelState.Errors());
}
你会推荐什么作为替代品,或者你会推荐我坚持我拥有的东西?
答案 0 :(得分:1)
和你一样,我们希望为MVC3和xVal的删除做好准备。我们通过编写添加到框架中的自己的RulesException,ErrorInfo类和扩展方法AddModelStateErrors来删除依赖项。
这样,您只需删除xVal,并解析名称空间。如果你有一个重构工具,这是微不足道的。
我有gist这些课程。