4
votes
4answers
91 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
2answers
26 views
DDD/NHibernate Use of Aggregate root and impact on web design - ex. Editing children of aggregate root
Hopefully, this fictitious example will illustrate my problem:
Suppose you are writing a system which tracks complaints for a software product, as well as many other attributes ab …
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 { …
0
votes
2answers
48 views
Database performance with Nhibernate and Activerecord
Inspired by the DDD hype, I designed my classes pretending there was no database at all. And then used NHibernate to map the classes to database tables. Part of my class graph look …
1
vote
1answer
42 views
Is there a gdb (or similar) frontend that will show the program stack visually?
Basically, I'm looking for something where I can break execution and then see a visual representation of the stack in memory. DDD doesn't have this as far as I can tell.
0
votes
2answers
53 views
Is using a table inheritance a valid way to avoid using a join table?
I've been following a mostly DDD methodology for this project, so, like any DDD'er, I created my domain model classes first. My intention is to use these POCO's as my LINQ-to-SQL e …
0
votes
0answers
19 views
DDD - Returning entity in response to a service operation
I am new to domain driven development & have a simple question. If a service needs to generate some entity as a response to an operation then how should it be done? One of the …
0
votes
2answers
31 views
DDD Advice regarding related Objects (C#)
I am on the fence about this question. Is it better to hold a collection of IDs related to an object or a collection of the object relation. I plan to use a repository approach as …
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
1answer
33 views
Accessing domain objects in the view
If I don't want to expose the internal state of my Domain Objects, but I need to display them, I can think of three approaches.
Which of these is the most "correct" (if any?).
T …
0
votes
1answer
28 views
How does an aggregate root delete one of its children?
If my understanding of Aggregate Roots is correct, the root should be responsible also for deleting one of its "children". That would seemingly translate into something like this:
…
24
votes
12answers
842 views
Career Killer? Nhibernate, OOP, Design Patterns, Domain Driven Design, Test Driven Development, IoC, MVC
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 …
0
votes
3answers
74 views
DDD screen cast question?
I wathced a screen cast on DDD by Greg Young the other day which spoke about persisting all state transitions of an object, instead of it's state when saved, then to load it "repla …
1
vote
2answers
70 views
ASP.MVC: Repository that reflects IQueryable but not Linq to SQL, DDD How To question
I want to create a DDD repository that returns IQueryable Entities that match the Linq to SQL underlying classes, minus any relations. I can easily return Entities minus the relat …
1
vote
2answers
59 views
asp.net MVC ddd DRY vs loose coupling and persistance/data access layer
So as I understand it with good loose coupling I should be able to swap out my DAL with a couple lines of code at the application root.
I have 2 DAL written, Linq-to-sql and a JSo …
