Tagged Questions
A domain model is composed of the objects, behavior, relationships, and attributes that make up the industry that is the focus of development.
11
votes
4answers
447 views
Constructing an object graph from a flat DTO using visitor pattern
I've written myself a nice simple little domain model, with an object graph that looks like this:
-- Customer
-- Name : Name
-- Account : CustomerAccount
-- HomeAddress : PostalAddress
...
9
votes
6answers
363 views
Inheritance vs enum properties in the domain model
I had a discussion at work regarding "Inheritance in domain model is complicating developers life". I'm an OO programmer so I started to look for arguments that having inheritance in domain model will ...
8
votes
3answers
947 views
AutoMapper flattens Domain Models but does it do the opposite? If not, what does?
I've been reading up on AutoMapper because of a response to one of my earlier questions here. It says that AutoMapper flattens complex domain models, but I need something that does the opposite. I ...
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 ...
5
votes
3answers
416 views
Practical usage of the Unit Of Work & Repository patterns
I'm building an ORM, and try to find out what are the exact responsibilities of each pattern. Let's say I want to transfer money between two accounts, using the Unit Of Work to manage the updates in a ...
5
votes
3answers
67 views
How to represent mandatory business fields on a model structure?
If we use type hinting, we can place an object mandatory:
public function myMethodThatDoFineStuff(MyObject $myobject) {
}
What if, we would like to place, not the all object but only some of it's ...
5
votes
3answers
320 views
5
votes
2answers
711 views
Corrupting POCO Domain Model when creating LINQ Entity Classes?
Say I've got a domain model created from C# classes like this:
public class MyClass
{
public string MyProperty { get; set; }
}
Along with the model, I have defined repository interfaces classes for ...
5
votes
6answers
593 views
Should we use foreign-key constraints when persisting Domain Models?
A while ago I had a discussion with my colleagues about the persistence of Domain Models and whether we should enforce foreign-key constraints at the database level.
My first reaction was that the ...
4
votes
5answers
280 views
Domain Driven Design, Domain objects, attitude about Setters
Been watching some Greg Young videos lately and I'm trying to understand why there is a negative attitude towards Setters on Domain objects. I thought Domain objects were supposed to be "heavy" with ...
4
votes
3answers
249 views
Constraining string length in domain classes
I have a persistence ignorant domain model that uses abstract repositories to load domain objects.
The concrete implementation of my repositories (the data access layer (DAL)) uses entity framework ...
3
votes
2answers
106 views
Complex domain model based on companies and not users
I have a few different types of companies that can access my web application e.g
Different types of Companies:
Client
Supplier
Agent
Each have their own table in the database, linked to the main ...
3
votes
3answers
356 views
DDD - How Can I Avoid Crossing Aggregate Boundaries Here?
We're working on a new project (re-writing existing app), and i'm running into problems with my domain model / repository design.
Here is a (simplified) version of two key portions in our domain ...
3
votes
2answers
269 views
Techniques for dependency injection into a domain model
I have a domain model type. One of its numerous properties requires an ITranslationService to provide the ability to translate its return value into the appropriate language.
Should I inject the ...
3
votes
2answers
95 views
Using collections/containers/catalogs in Domain Models
Let's say I want to model a cinema. The cinema will have a couple of rooms(for example, 7), where the movies are being played.
I wonder how should I design the domain model for this scenario.
...
3
votes
4answers
552 views
Dealing with an anemic domain model
I was trying to separate my DAL from my Business Layer, and in doing so, I decided to eschew any ActiveRecord approach and go for a DataMapper approach.
In other words, my domain objects would not ...
3
votes
4answers
803 views
LINQ Entities as business objects - pro/cons
the dbml file generated by Visual Studio (sqlmetal) comes with entities mapped to database tables. In your opinion, these clases are suitable to be used as domain model classes? Or should we avoid ...
2
votes
2answers
61 views
CQRS applying cross cutting concerns such as security
Suppose I have a complex system where there large trees of people. Simple thoughts are employees / manager relationship, many employees report to one manager. Now in addition to manager there are ...
2
votes
2answers
82 views
Domain Model architecture project in ASP.NET MVC
Are there any open source projects in ASP.NET MVC that use the Domain Model architecture instead of the Transaction Script (Service Layer) architecture? I'm looking for more of a project then just ...
2
votes
3answers
136 views
Domain driven design: Avoiding anemic domains and modelling real world roles
I'm looking for some advice on how much I should be concerned around avoiding the anemic domain model. We are just starting on DDD and are struggling with analysis paralysis regarding simple design ...
2
votes
1answer
198 views
What's the difference between Domain Model and OO Domain Model?
It is said that the Domain Model is used to capture the problem domain of an application. That's what are the requirements needed, etc. But often, these models are almost very close to what may turn ...
2
votes
2answers
241 views
Domain Model or Domain Object ? - Definitions
Please correct me if I'm wrong.
We may say Domain Model to represent:
a) The M part of a MVC structure, having on the M part, a Domain Driven Design pattern applied.
b) A scheme of entities, their ...
2
votes
3answers
147 views
How coupled should a domain model be? Should all aggregate roots be interfaces?
We're finally building a domain model. The domain model includes interfaces for loosely coupling domain objects to persistence. I'm however wondering how coupled the domain model objects should be ...
2
votes
3answers
186 views
Question on DI and how to solve some problems
I'm a newbie to Dependency Injection. I have never used and never even undestood what it is exatcly all about, but after my last attack on this topic I found out that is a way of uncoupling an object ...
2
votes
2answers
80 views
Should I use System.Net.Mail.MailAddress in my domain model, or just strings?
As covered well in this question, System.Uri is a good choice to reflect my intention for URIs. But what about for email addresses?
It seems not as clear-cut, because MailAddress has extra ...
2
votes
2answers
189 views
Domain Modelling tool advice - cross project relationships and inheritance
We're after an ORM/Domain Modelling tool that will allow us to generate several related domain models across multiple projects/assemblies generated in a "database first" approach from our MSSQL ...
2
votes
4answers
833 views
What is java domain model?
I am studying a Spring book and they mention java domain model.
What is that?
2
votes
2answers
73 views
Model.Is___ - Should it be a Property or a Method?
As I design the models for a domain, they almost always end up having some .IsSomething functionality on them. IsNew and IsDirty are common for data persistence purposes, IsValid for business rule ...
2
votes
1answer
248 views
Can domain objects call other data mappers? (Zend Framework)
For example:
I have a User which has 10 Widgets. Along with that I have a Manager that manages 5 of those widgets.
I want to retrieve the User's Widgets managed by a specified Manager. So I created ...
2
votes
2answers
175 views
Setters in Domain Model
In the context of DDD setters on a domain model are a code smell.
They should be avoided for the simple reason that they are not really part of the domain. There are no nouns in it that a Domain ...
2
votes
2answers
348 views
ASP.NET MVC 2: Any way to pass two Objects to a Template?
A "Lookup" in this example is an IList<string> of state abbreviations. Generally, your Domain Model POCOs won't include these options. ViewModels usually take this responsibility referencing ...
2
votes
3answers
992 views
What's the difference between Data Modelling and Domain Modelling?
By the way - with reference to data modelling I'm referring to logical or conceptual data models - not physical ones.
The question came up during a discussion at work; naturally I leapt to Wikipedia ...
2
votes
3answers
119 views
How do I model an object to track equipment / assets over time?
I've been trying to figure out the best way to model this entity, and I'm getting stuck. Here's the basic use case/story:
We have equipment arriving on site. We won't know what the equipment is until ...
2
votes
1answer
81 views
Domain Modeling question / collections with NHibernate
Please consider the domain model shown below (simplified for brevity - no ids etc.) A Customer can comment on a Product only once. Lets assume (for reasons I don't want to get into here) that the ...
2
votes
2answers
245 views
Passing DTOs around in the domain model
I see DTO types being created within and passed between types in the domain model. Is this good practise?
I always thought DTOs were to be used principally at context boundaries (i.e. at the edge of ...
2
votes
6answers
379 views
Where to start when doing a Domain Model?
Let's say I've made a list of concepts I'll use to draw my Domain Model. Furthermore, I have a couple of Use Cases from which I did a couple of System Sequence Diagrams.
When drawing the Domain ...
2
votes
2answers
571 views
Should I put actors in the Domain-Model/Class-Diagram?
When designing both the domain-model and class-diagrams I am having some trouble understanding what to put in them.
I'll give an example of what I mean:
I am doing a vacations scheduler program, ...
2
votes
3answers
415 views
Specialization hierarchy in a domain-model
I'm trying to make the domain model of a management system. I have the following kind of people in this system:
employee
manager
top mananger
I decided to define an User, from where Employee, ...
2
votes
2answers
106 views
Is it a good idea to create an interface for each domain objects?
I was just looking into the source code of an existing project which uses nHibernate and found that there are interfaces created for each entity classes. E.g ICustomer for Customer class. I was just ...
2
votes
2answers
138 views
Where to place logic in a rich domain model
I have a model "news item" which contains text, image etc to display as latest news on several pages in a website.
This "news item" can also be posted to Twitter or Facebook. Is it clean to implement ...
2
votes
2answers
701 views
BestPractice: Pros and Cons for using AutoMapper or LINQ (LINQ to Objects) for mapping between a Domain Model and a Presentation Model
What do you think? How do you map between your domain and presentation model?
2
votes
2answers
161 views
Where to place technology specific things in domain model?
We have an application that, along with many things, does some changes to Active Directory (add/remove user from group, change attribute values on user, etc).
We are now in the process of ...
2
votes
3answers
2k views
Mapping from Entity Framework to custom domain model classes?
I wonder how could I obtain an automatic mapping between entities generated by entity framework (.NET Framework 3.5 SP1) and custom domain model classes? I know I can create some data converters that ...
2
votes
4answers
381 views
Zend Framework / MVC: What type of objects to push to the View?
Hey guys - here's a question on Zend Framework or better on MVC in general:
I am asking myself for a quiet a long time now, if it is a good idea to push business objects (User, Team, etc.) to my ...
2
votes
3answers
301 views
What are good python libraries for the following needs?
What are good python libraries for the following needs:
MVC
Domain Abstraction
Database Abstraction
Video library (just to create thumbnails)
I already know that SQLAlchemy is really good for ...
2
votes
2answers
216 views
Domain Model Saving
Recently finished reading Eric Evans Domain Driven Design (very informative, very enjoyable) however come to first major project since completing the book and got the issue how to handle the domain ...
1
vote
2answers
114 views
How can I attach UI layer resource files to domain model data annotations?
This question really has larger architectural implications and I welcome any input or suggestions on this:
I'm more of the Martin Fowler school of thought when it comes to OOP. I believe you should ...
1
vote
1answer
26 views
Domain model and grouped data
I'm starting to catch the domain model idea but there is one thing that I fail to see how this is realized in domain model - grouped data. The most obvious example is various reports, with or without ...
1
vote
1answer
61 views
how to sort persistentSet of grails objects?
I have two domain models:
class Resource{
String name
static mapping = {
sort name:"asc"
}
}
class ResourceGroup{
String groupName
static hasMany = ...
1
vote
2answers
51 views
How to effectively slice tabular data using data mapper and domain model?
Let's say I have two tables: Book and Category. Book has a foreign key to Category. Book can only have on category. Let's say I want to display this table:
Book Title | Category ID ...