Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

1
  • 1
    Build whatever makes most sense for your UI/UX and user journeys in your app. I'd recommend avoiding the trap of letting the database structure influence the code. I would typically not expect database entities to have any kind of neat mapping on to classes in your program (avoiding using table names to decide how to structure your code), as Database structure is about persistence and integrity of the data. On the other hand, your code structure exists to provide behaviour, so look at class names that make sense from a user behaviour or UX point of view Commented Jul 30, 2023 at 6:51