.Net Core 2.1 IFormCollection模型错误

问题描述

我正在使用控件帮助程序将MVC 5转换为.Net Core 2.1。

  public static class ControllerHelpers
    {
        public static void AddRuleViolation(this ModelStateDictionary modelState,RuleViolation error,FormCollection collection)
        {
            modelState.AddModelError(error.PropertyName,error.ErrorMessage);
            modelState.SetModelValue(error.PropertyName,collection.TovalueProvider().GetValue(error.PropertyName));
        }

        public static void AddRuleViolations(this ModelStateDictionary modelState,IEnumerable errors,FormCollection collection)
        {
            foreach (RuleViolation issue in errors)
            {
                modelState.AddModelError(issue.PropertyName,issue.ErrorMessage);
                modelState.SetModelValue(issue.PropertyName,collection.TovalueProvider().GetValue(issue.PropertyName));
            }
        }
    }

我遇到错误

FormCollection does not have a deFinition for TovalueProvider

我也尝试过IFormCollection。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)