Is ASP.NET MVC 5 incompatible with the WebMatrix SimpleMembershipProvider?

前端 未结 5 1774
礼貌的吻别
礼貌的吻别 2020-12-04 08:22

We have an existing application that was build on ASP.NET MVC 4 & Web API. The admin parts of the site use Simple Membership. I\'m interested in upgrading the applicatio

5条回答
  •  死守一世寂寞
    2020-12-04 09:09

    If you are getting the error

    Attempt by security transparent method ‘WebMatrix.WebData.PreApplicationStartCode.Start()’ to access security critical method ‘System.Web.WebPages.Razor.WebPageRazorHost.AddGlobalImport(System.String)’ failed.

    In order to fix this install this package using NuGet package manager.

    Install-Package Microsoft.AspNet.WebHelpers
    

    After that , probably you will get another error

    Cannot load WebMatrix.Data version 3.0.0.0 assembly

    to fix this install this package using NuGet package manager.

    Install-Package Microsoft.AspNet.WebPages.Data
    

提交回复
热议问题