Remix.run Logo
dotancohen 2 days ago

I just like to add that the database design is the real secret sauce, important even more than external APIs in my opinion.

all2 2 days ago | parent | next [-]

This is something that I've stumbled into as well. DB models AND dataflow. Getting both of those well spec'd makes things a lot easier.

mattmanser 2 days ago | parent | prev [-]

Well, not DB design really, you can achieve the same thing by defining your POCOs well. I switched entirely to code-first design years ago. If you haven't worked with a good ORM, you're really missing out, though I admit there was quite a bit of friction at first.

dotancohen 2 days ago | parent [-]

No, I really am talking about how the database is organised. Tables representing objects, normalisation, etc. Whether or not it is accessed through the application with an ORM.