Questions tagged [crud]
Create, Read, Update, Delete. Fundamental operations on data stores.
54 questions
1 vote
3 answers
382 views
How to avoid duplicating Create and Update UIs in CRUD apps
For most apps I've built which deal with CRUD operations, I end up two very similar UI pages: one for the creation of the object, one for updating it. An example would be StackExchange's UI for ...
-2 votes
1 answer
130 views
CRUD for hierarchical data in ASP.NET - single view/controller vs. separate view/controllers?
I'm trying to develop a CRUD feature for an ASP.NET app that lets me manage customer information. Each customer can be subscribed to one or more services, and each service can have one or more terms. ...
3 votes
1 answer
908 views
CRUD is too simplistic for my usecases, how would you handle the repository pattern when using MediatR and EF Core?
I have a .Net 5 Web API project and use MediatR to encapsulate my business logic into commands and queries since I don't like to have a single CRUD service handling everything related to a specific ...
-2 votes
1 answer
94 views
What controls should my help desk team have over our user's accounts?
We are building a software, which we have companies registering their products. We (the administrator) will have the help desk team that'll be able to help our users (companies) in case of problems. ...
-2 votes
1 answer
204 views
Techniques for *large* CRUD apps?
Question, what is a good way to handle large CRUD web pages? My current process is this: I make/edit the SQL table with IDs I get another set of IDs in the HTML form, which is sent to a PHP page In ...
-2 votes
1 answer
149 views
Is it appropriate to include an option to edit multiple rows at once for a CRUD page?
Let's say we have a situation in which we have a particular entity, for example an User which has a set of related entities e.g Book. At some point in time, a group of users phisically receives a new ...
2 votes
1 answer
420 views
Design of dropdown lists to handle optional selection
Consider the following example in a CRUD application. A user can select their favourite food from a dropdown list ("Burgers", "Pies", "Chips"). This is an optional field i.e. not mandatory. Thus a ...
1 vote
1 answer
90 views
Batching CRUD of individual models that need to be linked
I have a few models which need to be linked together during a workflow on my webapp and I'm having trouble thinking of a nice abstraction for the api. They are represented as individual constructs on ...