In DDD Architecture where do I keep helper classes?
问题 I'm working in a DDD project where contains these layers: UI, Application, Domain and Infrastructure. Where should the helpers classes live? Update: I'm talking about a Object Dumper Helper for example. 回答1: It depends on what kind of helper you are talking about. If it's a Helper that format a value in a friendly display format, then it would fit better in the UI. If you are talking about a SqlServer helper, then it goes to Infra. 回答2: Classes like [Something]Helper , [Something]Manager and