5
Someone knows a way for me to generate CRUD
automatic to my bank tables using MVC?
I have 5 tables and would like to generate SinglePage apps
automatically for them, without having to generate several views/controllers
. The idea is to create basic administration screens to manage these tables that are my internal control and do not need worked designs.
The idea is if another table appears in the future I just need to select in a combobox which I want to manage and already be listed the values on the grid with buttons insert/update/delete
.
I’ve already researched some things but what I find still requires considerable work to do the Scaffolding
and creates multiple files views/controller
.
You want to celebrate
Views
from your database?– JcSaint
@rodrigorf You are using Code First?
– Renan Carlos
@Renancarlos Database First.
– rodrigorf
@Jcsaint, exactly, generate the views/controllers, but wanted to know if there is a way to generate a generic view/controller that suits several tables. If not possible, at least generate everything automatically and already with CRUD methods.
– rodrigorf