我刚刚从beta产品中更新到RC1 MVC。
我的Application_start中有以下代码(在global.ascx中)
System.Web.Mvc.ModelBinders.Binders[typeof(Shared.DO.Gig)] = new GigModelBinder();这导致以下例外情况..。
找不到
方法: System.Collections.Generic.IDictionary`2 System.Collections.Generic.IDictionary`2
发布于 2009-03-01 20:52:57
你重新建造了你的项目吗?Binders是一个ModelBinderDictionary,它不是IDictionary,很可能是在RC1之前。
https://stackoverflow.com/questions/600367
复制相似问题