by Jason Harris | Uncategorized
With great power comes great responsibility. Spider-Man Here’s a script to disable the Page Visibility API and similar “tractics” used to track whether you’re browser tab is in the background or foreground. These methods are rarely used with...
by Jason Harris | Domain Driven Design
One concept in Domain Driven Design that may be familiar to you is entities. Most object relational mappers like Entity Framework and NHibernate use the term “entity”. In their context an entity is an object that maps a row of data to a table. Although...
by Jason Harris | Domain Services, Uncategorized
Before diving in to what Domain Services are, let’s first under the problem they solve. Let’s recall one of the important rules of entities from our Aggregate Roots post. An Aggregate and its child entities should never contain object references to other...
by Jason Harris | Domain Driven Design
Spend time searching the internet for “What is Domain Driven Design” and you’ll quickly find it’s been defined several different ways. Admittedly most of these definitions are excellent and get the point across. My goal for this article is to...
by Jason Harris | Value Objects
When learning software development it’s highly probable you learned to leverage built-in programming language value types (e.g GUID, string, int, bool, decimal, etc) to pass around data within your business domain model. This is common practice, but we can...