|
You are here |
enterprisecraftsmanship.com | ||
| | | | |
www.paepper.com
|
|
| | | | | Domain Driven Design (DDD) is an influential book by Eric Evans from 2004 - sometimes also referred to as "the big blue book". This blog post summarizes some of my own understanding of the book and gives you an introduction to domain driven design. Important definitions Domain The domain is the area in the real world which we are writing a computer program about. Model The model is our representation of our domain. | |
| | | | |
blog.ploeh.dk
|
|
| | | | | How can you both follow Command Query Separation and assign unique IDs to Entities when you save them? This post examines some options. | |
| | | | |
blog.submain.com
|
|
| | | | | This post is about C# classes. Have you ever wanted to know why you should keep a class member private? Find out the answer and more! | |
| | | | |
www.morling.dev
|
|
| | | The other day, I was looking for means of zipping two Java streams: connecting them element by element?essentially a join based on stream offset position?and emitting an output stream with the results. Unfortunately, there is no zip() method offered by the Java Streams API itself. While it was considered for inclusion in early preview versions, the method was removed before the API went GA with Java 8 and you have to resort to 3rd party libraries such as Google Guava if you need this functionality. | ||