amantinband / clean-architecture

The ultimate clean architecture template for .NET applications 💪
MIT License
1.4k stars 221 forks source link

Question: Converters #29

Closed Thijs153 closed 4 months ago

Thijs153 commented 4 months ago

Hey Amichai, I have a quick question. In this template, you're storing a list of IDs as a comma-separated string in the db (.HasListOfIdsConverter();), and you're also storing a dictionary as JSON in the database.

I'm wondering if it's a recommended/good approach, or just for this template? Wouldn't you normally store these in a separate table (like you did in your YT series)?

(I'm using SQL server, if it's db specific :) )

pointlevel commented 4 months ago

Did you get an answer on this question?

Thijs153 commented 4 months ago

Not directly, but I've come to realize that this is a more general .NET/SQL question, rather than it being an 'issue' for this template.