Tagged Questions
58
votes
13answers
3k views
Career Killer? Nhibernate, OOP, Design Patterns, Domain Driven Design, Test Driven Development, IoC, MVC [closed]
I have a fairly slick approach to doing C# development using the above tools/methodologies. Specifically i follow the "Jeffrey Palermo Agile Bootcamp" onion architecture. I feel like I'm a strong ...
25
votes
3answers
855 views
How to avoid anemic domain models, or when to move methods from the entities into services
I have a common scenario that I am looking for some guidance from people more experienced with DDD and Domain Modeling in general.
Say I start out building a blog engine, and the first requirement is ...
20
votes
7answers
2k views
CQRS Examples and Screencasts
I'm looking for some in depth end-to-end CQRS examples with a reasonable set of unit tests.
Also, if anyone knows of some CQRS screencasts as well it would be extremely handy.
I'm already aware of ...
18
votes
3answers
2k views
Domain Driven Design: Domain Service, Application Service
Can someone explain the difference between domain and application services by providing some examples? And, if a service is a domain service, would I put the actual implementation of this service ...
18
votes
6answers
2k views
Best way to implement Repository Pattern?
I've been exploring BDD/DDD and as a consequence trying to come up with a proper implementation of the Repository pattern. So far, it's been hard to find a consensus over the best way to implement ...
17
votes
3answers
473 views
Reducing Repositories to Aggregate Roots
I currently have a repository for just about every table in the database and would like to further align myself with DDD by reducing them to aggregate roots only.
Let’s assume that I have the ...
17
votes
12answers
3k views
Are there any open source projects using DDD (Domain Driven Design)?
I'm trying to understand the concepts behind DDD, but I find it hard to understand just by reading books as they tend to discuss the topic in a rather abstract way. I would like to see some good ...
16
votes
3answers
470 views
How does a service layer fit into my repository implementation?
I have created a POCO model class and a repository class which handles persistence. Since the POCO cannot access the repository, there are lots of business logic tasks in the repository which doesn't ...
16
votes
8answers
1k views
TDD, DDD and Encapsulation
After several years of following the bad practice handed down from 'architects' at my place of work and thinking that there must be a better way, I've recently been reading up around TDD and DDD and I ...
14
votes
10answers
2k views
Choosing between immutable objects and structs for value objects
How do you choose between implementing a value object (the canonical example being an address) as an immutable object or a struct?
Are there performance, semantic or any other benefits of choosing ...
12
votes
5answers
481 views
Repository, Pipeline, business logic and domain model - how do I fit these together?
I'm designing N-tier application and I came across a difficulty which you might have a solution to. Presentation layer is MVC.
My ORM is carried out using LinqToSQL - it's a seperate project which ...
12
votes
3answers
474 views
Should Domain Entities be exposed as Interfaces or as Plain Objects?
Should Domain Entities be exposed as Interfaces or as Plain Objects ?
The User Interface :
public interface IUser
{
string FirstName { get; set; }
string LastName { get; set; }
string ...
11
votes
5answers
243 views
DDD (Domain Driven Design), how to handle entity state changes, and encapsulate business rules that requires large amount of data to be proccessed
public class Person
{
public IList<String> SpecialBirthPlaces;
public static readonly DateTime ImportantDate;
public String BirthPlace {get;set;}
public DateTime BirthDate
{
...
10
votes
3answers
418 views
Is it possible to use DDD and BDD together?
I like the middle-out development that is achieved with DDD. Development is driven by domain, the most solid part of application. We don't depend on infrastructure, persistence and presentation. That ...
10
votes
4answers
2k views
Advice on AOP with C#
I have an ASP.NET 3.5 SP1 Webforms Application. I use the MVP pattern (supervising controller) with DI (autofac). My presenters call to the repository contracts defined in my Domain (DDD) which are ...
10
votes
2answers
1k views
DDD - How to implement high-performing repositories for searching
I have a question regarding DDD and the repository pattern.
Say I have a Customer repository for the Customer aggregate root. The Get & Find methods return the fully populated aggregate, which ...
9
votes
1answer
129 views
Questioning the use of DTOs with restful service and extracting behavior from update
In the realm of DDD i like the idea of avoiding getters and setters to fully encapsulate a component, so the only interaction that is allowed is the interaction which has been built through behavior. ...
9
votes
1answer
322 views
Architecture: simple CQS
I'm thinking about applying CQS for my ASP.NET MVC web site, but in a very simple matter. I don't mean CQRS, because I want to use the same data source for query and command parts, and so I don't need ...
9
votes
4answers
1k views
Loading Subrecords in the Repository Pattern
Using LINQ TO SQL as the underpinning of a Repository-based solution. My implementation is as follows:
IRepository
FindAll
FindByID
Insert
Update
Delete
Then I have extension methods that are ...
8
votes
5answers
163 views
Pros/Cons of implementing calculations in C# instead of SQL [closed]
I work on a business intelligence app where we rely heavily upon raw sql queries (named queries a la NHibernate) and also NHibernate QueryOver API.
Generally speaking, a lot of the value we provide ...
8
votes
2answers
171 views
Many-to-many relationships in DDD
I'm new to DDD and I'm stuck with many-to-many relationships. E.g. we have two aggregate roots - Tasks and Workers.
Contract is definitely not aggregate root, because it has no sense without Task and ...
8
votes
2answers
633 views
How to pass Current User Information to all Layers in DDD
Similar questions have been asked before but not quite the same (unless I missed it)
I want to pass IUserInfo class instance through my Service, Domain , Domain Events, Domain Event Handlers...
...
8
votes
3answers
1k views
NHibernate IQueryable collection as property of root
I have a root object that has a property that is a collection.
For example:
I have a Shelf object that has Books.
// Now
public class Shelf
{
public ICollection<Book> Books {get; set;}
...
8
votes
2answers
351 views
In a DDD approach, is this example modelled correctly?
Just created an acc on SO to ask this :)
Assuming this simplified example: building a web application to manage projects...
The application has the following requirements/rules.
1) Users should be ...
8
votes
3answers
860 views
Interaction between unit of work and repository patterns
After reading thorugh plenty of articles I am still unsure about the responsibilities of Unit of Work pattern when interacting with repositories.
Repositories are responsible for loading and saving ...
8
votes
8answers
789 views
If you are forced to use an Anemic domain model, where do you put your business logic and calculated fields?
Our current O/RM tool does not really allow for rich domain models, so we are forced to utilize anemic (DTO) entities everywhere. This has worked fine, but I continue to struggle with where to put ...
8
votes
5answers
1k views
DDD: entity's collection and repositories
Suppose I have
public class Product: Entity
{
public IList<Item> Items { get; set; }
}
Suppose I want to find an item with max something... I can add the method Product.GetMaxItemSmth() ...
8
votes
5answers
767 views
How much logic should i put my repository methods when using repository pattern?
i'm struggling a bit with repositories. I'm using C# and NHibernate. The question i have is : how much should my repository do before it calls a save or a get?
For example i have a user class which ...
8
votes
7answers
2k views
What methods should go in my DDD factory class?
I am struggling to understand what my factory class should do in my DDD project. Yes a factory should be used for creating objects, but what exactly should it be doing. Consider the following ...
7
votes
2answers
116 views
EF code first: How are you meant to delete a row from an entity's Collection while following DDD?
So here's the scenario:
DDD states that you use a repository to get the aggregate root, then use that to add/remove to any collections it has.
Adding is simple, you simple call .Add(Item item) on ...
7
votes
4answers
463 views
C# Domain Model + repository: Where to put code that loads an entity
I have a model class which is loaded from a "GetById" method in my repository class. I now need to add additional properties to this entity, which aren't saved in the database, but are calculated by a ...
7
votes
9answers
948 views
Where to put global rules validation in DDD
I'm new to DDD, and I'm trying to apply it in real life. There is no questions about such validation logic, as null check, empty strings check, etc - that goes directly to entity constructor/property. ...
7
votes
3answers
526 views
Some Questions about structuring domain-driven-design namespaces
I have some general questions about framework design.
I am building an API for an iPhone application in C#.NET (framework 3.5), & SQL 2008 (using LINQ). I have followed the Domain-Driven-Design ...
7
votes
2answers
480 views
What is the relationship between DDD and the “Onion Architecture”?
What is the relationship between Domain-driven design (DDD) and "The Onion Architecture" of Jeffrey Palermo?
Is the Onion Architecture a subset of DDD?
7
votes
3answers
288 views
Implementing Domain Driven Design
Is anyone using the techniques from Domain Driven Design? I've recently read the Eric Evans book of the same name (well, most of it!) and would be interested to hear from anyone who's implemented ...
7
votes
5answers
423 views
DDD Entities making use of Services
I have an application that I'm trying to build with at least a nominally DDD-type domain model, and am struggling with a certain piece.
My entity has some business logic that uses some financial ...
7
votes
3answers
534 views
DDD - Entity state transition
consider the following simplified example:
public class Ticket
{
public int Id;
public TicketState State;
public Ticket()
{
// from where do I get the "New" state entity here? with ...
7
votes
6answers
472 views
DDD: Enum like entities
I have the following DB model:
**Person table**
ID | Name | StateId
------------------------------
1 Joe 1
2 Peter 1
3 John 2
**State table**
ID ...
7
votes
3answers
3k views
Is there a rich domain model example?
I'm looking for a simple example to illustrate the benefits of using a rich domain model. Ideally, I'd like a before and after code listing (which should be as short as possible).
The before code ...
6
votes
1answer
156 views
When do domain event handlers come into play?
I have a simple examle domain of two aggregate roots and one regular entity.
Tenant, UserGroup and User where in this particular sample the Tenant and User make up for the two AggregateRoots.
When a ...
6
votes
2answers
155 views
DDD / DI (Unity) / .NET / Composition Root - Domain Services
I have a standard Order/OrderLineItem setup.
A number of Refunds are generated during the day that are persisted during the day, the Refund consists of a an Order Id and 1 or more LineItemId's. I ...
6
votes
2answers
315 views
Is Unit Of Work and Repository Patterns very useful for big projects?
I'm starting a new web project using ASP.NET Webforms + EF4. I'm trying to apply a repository pattern with a unit of work pattern following this tutorial : ...
6
votes
2answers
183 views
Saving domain entities changes
here's real example that will lead to my question: I have an AddCommentToArticleCommand, which has an ArticleId, comment text and email address. This command:
uses the article repository to get the ...
6
votes
2answers
128 views
Is there a suggested pattern for using LINQ between the Model & DataAccess Layers in a DDD based Layered Architecture
I've been reading Tim McCarthy's awesome book on DDD in .NET. In his example application though, his underlying data access is using SqlCE and he's handcrafting the SQL inline.
I've been playing with ...
6
votes
1answer
296 views
If repositories are for aggregate roots, where should data access logic for other entities go?
I have a few objects that represent a web application. Currently I have a cluster object to represent a specific deployment of the app. Within a cluster object I have the following objects: Server, ...
6
votes
4answers
142 views
Kind of a question about the English language: Using plural in the first part of an identifier name
As a non-native English speaker, I often wonder about using the plural form in the initial part(s) of noun phrases when naming classes or objects.
For example:
If I have an interface to multiple ...
6
votes
3answers
290 views
Which is better? Have complicated search logic in repository or in a domain level service (via IQueryable or other)?
I need to be able to search customer accounts by multiple search fields. Right now, I have my search logic in my repository. The search logic includes some filtering that feels more like it belongs in ...
6
votes
6answers
189 views
What type of result should be returned from the service layer?
Say, for example, that I have a PostsService that creates a post:
public class PostsService : IPostsService
{
public bool Create(Post post)
{
if(!this.Validate(post))
{
...
6
votes
1answer
478 views
DTO shape: flat, complex/nested, or a mixture of both
I have an MVC2 n-tier application (DAL, Domain, Service, MVC web) using a DDD approach (Domain Driven Design), having a Domain Model with repositories. My service layer uses a Request/Response ...
6
votes
1answer
249 views
Options for IoC Auto Wiring in Domain Driven Design
In my latest ASP.NET MVC 2 application I have been trying to put into practice the concepts of Domain Driven Design (DDD), the Single Responsibility Principle (SRP), Inversion of Control (IoC), and ...