Skip to main content

Questions tagged [crud]

Create, Read, Update, Delete. Fundamental operations on data stores.

1 vote
3 answers
382 views

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 ...
Simon Farshid's user avatar
-2 votes
1 answer
130 views

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. ...
David's user avatar
  • 1
3 votes
1 answer
908 views

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 ...
Olaf Svenson's user avatar
-2 votes
1 answer
94 views

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. ...
RA828's user avatar
  • 115
-2 votes
1 answer
204 views

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 ...
Kyle's user avatar
  • 37
-2 votes
1 answer
149 views

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 ...
Acerbic's user avatar
  • 69
2 votes
1 answer
420 views

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 ...
Aveer28's user avatar
  • 131
1 vote
1 answer
90 views

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 ...
Anisotropic's user avatar

15 30 50 per page