Base solution for your next web application
Open Closed

Autogenerating files and classes for entities / Simple CRUD #960


User avatar
0
rodrigofd created

Hi, I am just starting with a ASP.NET Zero project, although I already have a huge portion of my domain already designed and essentially ready to be implemented.

In such, I have a huge amount of 'simple' or 'basic' entities, for which I don't need much more than simply CRUD operations, to the user to perform. So, I'm wondering if there is any way, or tip, anyone has, to quickly scaffold or bootstrap all the necessary support files and classes to get the CRUDs for, let's ay, hundreds of entities already modeled on the db... Otherwise it will be a painful, mechanical process of writing pretty much the same code, over and over but changing the name only.

Thoughts?


3 Answer(s)
  • User Avatar
    0
    hikalkan created
    Support Team

    Hi,

    We have not such a tool yet since we mostly think AspNet Zero for new applications. But, such a tool are in our road map.

  • User Avatar
    0
    easyest created

    +1 for such feature.

  • User Avatar
    0
    steveb created

    +2 - as even new applications often have a bunch of semi-static data that needs a basic CRUD functionality (a simple table would suffice as most of this semi-static data is not exposed to "users" but only admins)

    -Steve