0
votes
2answers
51 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 …
0
votes
3answers
75 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 …
0
votes
1answer
30 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:
…
1
vote
1answer
58 views
Repository without ORM for saving object graph
I know it's fairly straight forward to create Repository for retreiving domain models without ORM (http://stackoverflow.com/questions/446629/repository-pattern-without-linq-or-othe …
1
vote
2answers
66 views
In DDD, are collection properties of entities allowed to have partial values?
In Domain Driven Design are collection properties of entities allowed to have partial values?
For example, should properties such as Customer.Orders, Post.Comments, Graph.Vertices …
0
votes
2answers
115 views
Implementing repositories using NHibernate and Spring.Net
I'm trying to get to grips with NHibernate, Fluent NHibernate and Spring.
Following domain-driven design principals, I'm writing a standard tiered web application composed of:
a …
0
votes
2answers
44 views
repository pattern with a legacy database and Linq to SQL
I'm building an application on top of a legacy database (which I can not change). I'm using Linq to SQL for the data access, which means I have a (Linq to SQL) class for each table …
3
votes
1answer
177 views
Is it ok for entities to access repositories?
I've just started working with DDD, so maybe this is a silly question...
Is it ok for an entity to access a repository (via some IRepository interface) to get a value at runtime? …
6
votes
4answers
665 views
Repository Pattern: how to Lazy Load? or, Should I split this Aggregate?
I have a domain model that has the concept of an Editor and a Project.
An Editor owns a number of Projects, and a Project has not only an Editor owner, but also a number of Editor …
1
vote
3answers
95 views
Questions regarding Domain driven Design
Hi All,
After reading Eriv Evan's Domain driven design also i have few doubts. I searched but no where i could able to find satisfying answers. Please let me know if anyone of you …
1
vote
3answers
118 views
Domain Driven Design Layout Question
Hi
Im new to the DDD thing. I have a PROFILE class and a PROFILE REPOSITORY CLASS.
The PROFILE class contains the following fields -> Id, Description, ImageFilePath
So when I add …
0
votes
1answer
71 views
Detecting Changes in Entities within an Aggregate Root
I am looking to see what approaches people might have taken to detect changes in entities that are a part of their aggregates. I have something that works, but I am not crazy abou …
0
votes
4answers
78 views
Unit Testing Domain Services Against a Real Database
I was wondering what approaches others might have for testing domain services against a database? I already have a series of mock repositories that I am able to use in the domain …
0
votes
3answers
98 views
How linq 2 sql is translated to TSQL
Hi all,
It seems Linq2sql doesn't know how to construct the TSQL while you transform linq2sql object into domain object with constructors. Such as:
from c in db.Companies
select …
1
vote
5answers
777 views
Problem using LINQ to SQL with one DataContext per atomic action
I have started using Linq to SQL in a (bit DDD like) system which looks (overly simplified) like this:
public class SomeEntity // Imagine this is a fully mapped linq2sql class.
{
…
