Do some frameworks on top of ASP.NET MVC easily create a backend for the site?

Good afternoon!

For the PHP CodeIgniter framework, there is an "app-framework" BackendPro :

I mean, it provides you with functionality for all simple repetitive tasks, such as authentication, permissions, and the basic look and feel of your website’s control panel. Therefore, using your current knowledge of PHP and CodeIgniter, you can use BackendPro to create a fully functional website quickly, as you can focus on your application and not on bits to control the system.

This helps a lot when quickly creating a site (grids for objects, a common CRUD interface, login \ logout, etc., which you know :)). This is actually a stub for the backend. Is there something similar for ASP.NET MVC?

Thanks in advance!

+3
source share
1 answer

You may be interested in this and the following articles by Steve Sanderson:

Launch an ASP.NET MVC 3 Project with the MvcScaffolding Package

+1
source

All Articles