PreviousNext

The code smell every project suffers from

by miguelbernard, 2020-07-21T18:16:15.761Z

When reviewing pull requests, the code smell I always encounter is the Primitive obsession. For those of you who don't know, it's a design smell where the code relies too much on using primitive types like bool, int, string, guid, etc. As you'll discover in this blog post, this approach leads to bugs and issues that can hurt your project pretty severely.

Read More