1

我有一个 ASP.NET MVC 项目,我已经将近两个月没有工作了。只要我不更改任何代码,在浏览器中调试就可以正常工作。当我修改任何代码时,即使添加空格,我都会收到此错误:

An exception of type 'System.NotSupportedException' occurred in EntityFramework.dll but was not handled in user code

Additional information: The type 'System.Web.Routing.RouteCollection+IgnoreRouteInternal' and the type 'System.Web.Mvc.RouteCollectionExtensions+IgnoreRouteInternal' both have the same simple name of 'IgnoreRouteInternal' and so cannot be used in the same model. All types in a given model must have unique simple names. Use 'NotMappedAttribute' or call Ignore in the Code First fluent API to explicitly exclude a property or type from the model.

异常发生在这一行:

var item = Cards.FirstOrDefault(s => s.name == cardName);

我能想到的唯一一件事是更改路由设置可能是我在再次选择这个项目之前所做的最后一件事,据我所知,那里的一切都很正常。另一件事是我正在使用 TortiseGit 和 bitbucket,但我看不出会有什么影响。我有另一个项目具有类似的设置,没有问题。

如果我犯了错误,这是我的 RouteConfig.cs

using System;
using System.Web.Mvc;
using System.Web.Routing;

namespace houseOfCards
{
    public class RouteConfig
    {
        public static void RegisterRoutes(RouteCollection routes)
        {
            routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

            routes.MapRoute(
                name: "Default",
                url: "{controller}/{action}/{id}",
                defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
            );

            routes.MapRoute(
                name: "Hello",
                url: "{controller}/{action}/{name}/{id}"
                );
        }
    }
}

我不知道如何解决这个问题,任何建议将不胜感激。

4

1 回答 1

1

我遇到了类似的问题,经过三天的调查和调试,我设法修复了它,错误消息往往有点误导,因为它只涉及System.Web.Routing.RouteCollectionSystem.Web.Mvc.RouteCollectionExtensions类,这导致人们认为路由有一些东西这样做,但他们没有,至少在我的情况下。

在我的情况下,我错误地将实体的导航属性声明为ICollection<Controller>,因此 Entity Framework 对我想要注册的类感到困惑。

因此,我建议在您的模型中搜索任何以保留字命名的属性或类或不属于该模型的类并重命名它。

我希望它有帮助

于 2015-05-31T23:29:51.747 回答