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)
-
0
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.
-
0
+1 for such feature.
-
0
+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