Back to Tags
Domain Modeling
3 items tagged with "domain-modeling"
Filter by type:
Anti-Patterns3
Anti-Pattern
Stringly Typed Code
Using strings to represent data that has real structure or a fixed set of values, discarding type safety and pushing errors to runtime.
Anti-Pattern
Primitive Obsession
Modeling domain concepts with raw primitives like int and string instead of dedicated types, scattering validation and inviting invalid data.
Anti-Pattern
Data Clumps
The same group of fields or parameters traveling together everywhere, signaling a missing abstraction that should be a single object.