Feature Folder Structure in ASP.NET Core – Scott Sauber

A feature folder structure is organizing your app by feature as opposed to technology (Controllers, Views, etc.), which is the default structure in MVC.  A feature folder structure is easier to maintain than the default structure and even Areas (which is a poor man’s feature folder structure).  It looks something like this: http://i.imgur.com/WC6jSE5.png Why would you…