3
votes
2answers
65 views
Reading code of real production projects. How to find?
I really like the idea of reading others people code to improve your design skills. Open source can help here a lot.
This can teach you basic OO principles. But I'm not writing fr …
0
votes
5answers
32 views
Is a guid as identity field better in domain-driven design?
Is it easier to implement domain-driven design when using guids as identity fields instead of auto incrementing integers? With guids you don't have to jump to the database to get t …
4
votes
4answers
89 views
Opinion wanted: Intercepting changes to lists/collections
Although BindingList<T> and ObservableCollection<T> provide mechanisms to detect list changes, they don't support mechanisms to detect/intercept changes before they hap …
0
votes
5answers
46 views
Can/Should a domain object be responsible for converting itself to another type?
We have a class Event (it's actually named differently, but I'm just making abstraction):
public class Event
{
public string Name { get; set; }
public string Description { …
1
vote
2answers
34 views
How do you deal with composite pattern when using hibernate and domain-driven design?
Does hibernate has support for hierarchical data in a database where
you use a parentId
you use a parentId and an orderId
you use Modified
Preorder Tree Traversal
6
votes
3answers
76 views
IoC Containers and Domain Driven Design
I've been searching for guidance for using IoC containers in domain driven design. Evan's book unfortunately doesn't touch on the subject. The only substantial guidelines I could f …
1
vote
1answer
24 views
Design question about SPSecurity.RunWithElevatedPriviledges in multi-tiered design
I have a question re: performance and design. Crux of the problem is: do I wrap RunWithElevatedPriviledges around a sequence of methods all requiring its use (but the call is in th …
0
votes
1answer
18 views
WCF WPF and Domain Objects
Here is the scenario:
There are some domain objects
There are some WCF services exposing business services that interact with these domain objects
There is a WPF application that …
1
vote
1answer
22 views
How do you deal with linktables when using Domain Driven Design and nHibernate?
If you have the tables Groups, Users, Channels and between each two a linktable, how do you organize that in Domain Driven Design and nHibernate? Does a Group have a UserCollection …
0
votes
1answer
23 views
Domain Driven Design efforts in dynamic languages ?
Are you aware of any DDD efforts in a dynamic language ?
Practical resources on DDD tend to decrease quite dramatically when straying from enterprise-oriented solutions (a google …
1
vote
3answers
46 views
While designing ORM, what is the best approach to represent relationship, performance-wise ?
While designing ORM, what is the best approach to represent the relationship, performance-wise? I mean, out of the following two, which approach is best considering performance?
c …
4
votes
3answers
144 views
rich domain model example
Hi,
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 possib …
1
vote
3answers
56 views
Relations in your model in a MVC application?
Now I have an model User which represents an user in the application. And I use an UserRepository with methods like getById($id) and getAll().
An user can post reviews. If I want …
1
vote
1answer
11 views
Best resource for learning and seeing examples of Behavior Driven Development (BDD)
Hi,
I am trying to creating Cucumber/Gerkin BDD Feature and Scenario descriptions, and am seeking examples just at the domain specific language. In particular, examples and sugge …
0
votes
5answers
162 views
How many levels of abstraction do I need in the data persistence layer?
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 …
