I\'m writing an application using DDD techniques. This is my first attempt at a DDD project. It is also my first greenfield project and I am the sole developer. I\'ve fleshed out the domain model and
For example is it better to have: public class Case : EntityIdentifiable { public Jobs Jobs { get; set; }
I have a question about how to solve the following scenario using DDD. I have 2 entities Person and Email with one to many relationship. A person can have zero or more email address(es).
I\'m working on a model for a simple fishing competition and I have some issues with my design. The main class for the fishing game is Capture and it looks like this:
Is it possible for an Aggregate root entity to have a method in which it will call a Repository? I know it should not but want to get confirmed as Eric\'s book is also not saying anything clearly :(
I\'m getting started on a new MVC project where there are some peculiar rules and a little bit of strangeness, and it has me puzzled. Specifically, I have access to a database containing all of my dat
I am thinking of making all my enti开发者_开发百科ties in my domain model implement INotifyPropertyChanged . My main reason behind this would be:
How do restrict 开发者_运维知识库access to a class property to within the same namespace?Consider the following class.The Content class cannot Publish itself, instead the ContentService class
Lets say I have a domain model with a class called Blog that has a property called BlogEntries (that contains objects of type BlogEntry). If I have a database model with two tables "Blog" an
I created the following encapsulation over the SQL Dependency object: public class DependencyTracker { private SqlDependency _SQLDependency = null;