Should the FactoredProfileProvider.cs be placed in App_Code only? What is the standard way to do it? Can I put it under an Area that handles all accounts?
Should the FactoredProfileProvider.cs be placed in App_Code only? What is the standard way to
Share
Absolutely not. The
App_Codefolder should never be used with the web applications model which is what ASP.NET MVC uses. This folder is used only with websites. See web application vs website. So in ASP.NET MVC you could place this file wherever you want, like for example you could create yourself a subfolder calledProfileProvidersand put it inside.