Tagged Questions

A Repository is a mechanism for encapsulating storage, retrieval, and search behavior which emulates a collection of objects.

learn more… | top users | synonyms

55
votes
4answers
7k views

What's an Aggregate Root?

I'm trying to get my head around how to properly use the repository pattern. The central concept of an Aggregate Root keeps coming up. When searching both the web and Stack Overflow for help with what ...
21
votes
4answers
3k 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 members. ...
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
3answers
788 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? For example, I want ...
9
votes
2answers
785 views

Question about Repositories and their Save methods for domain objects

I have a somewhat ridiculous question regarding DDD, Repository Patterns and ORM. In this example, I have 3 classes: Address, Company and Person. A Person is a member of a Company and has an Address. ...
8
votes
5answers
1k views

TDD demos/guides/videos including fake repositories or domain models [closed]

I have to rewrite an old application and I would like to start using the repository pattern for data access and also write as many tests as possible for the required functionalities. Can you ...
7
votes
1answer
548 views

DDD Repository Awareness of Other Repositories

Is it generally acceptable that one repository can access another repository? Specifically in this case, I have one aggregate root that uses another aggregate root to determine what entities to add. ...
7
votes
5answers
813 views

When working with domain models and POCO classes, where do queries go?

I am new to domain models, POCO and DDD, so I am still trying to get my head around a few ideas. One of the things I could not figure out yet is how to keep my domain models simple and ...
5
votes
2answers
319 views

Try Catch in Repository

None of the examples I have looked at for Repository Patterns include any kind of error handling. Why is this? Say for instance I have this: public virtual TItem Insert<TItem>(TItem item) where ...
5
votes
1answer
539 views

Architectural concerns: Fluent NHibernate, The Repository pattern and ASP.NET MVC

I've just started a new project and have naturally opted to use a lot of new tech. I'm using (Fluent) NHibernate, ASP.NET MVC 3 and am trying to apply the Repository pattern. I've decided to ...
5
votes
3answers
497 views

Real World ASP.NET MVC Repositories

In the real world, Controllers can potentially need to use data from a variety of database tables and other data stores. For example: [Authorize] public class MembersController : Controller ...
5
votes
1answer
383 views

What is the best way to use EF 4 and DDD

I would like to use EFf 4 as my ORM in my DDD project. I am going to generate my model based on my classes. Should I create classes that are basically dto objects for my business objects to consumer ...
5
votes
4answers
332 views

Where do all “bulk” operations belong in DDD?

In DDD one of the key concepts is Repository, which allows you to retrieve Entities (or Aggregate Roots) and then save them back after they are updated. Let assume that we need to perform some 'bulk' ...
4
votes
1answer
146 views

Naming of domain objects that act like ddd building blocks such as repositories

When comming accross concepts within a Domain Model where there exists something that has a name and sounds like an object but overlaps with the responsiblility of one of the 5 main DDD building ...
4
votes
1answer
536 views

Applying DDD to Northwind database

I would like to do some exercice and apply DDD to my Domain Model applied to Northwind database. Even if Northwind is an example I imagine that it was done to satisfy some " virtual business" ...
4
votes
1answer
362 views

DDD - Repository Pattern returning db keys?

There is a big design flaw here, but I'm having trouble solving it: The business need is a little involved so I'll try to keep this simple. We have a table with purchases, and a table for returns. ...
3
votes
2answers
80 views

DDD: can a repository return boolean values?

Is it ok for a Repository to return boolean values based on objects it (virtually) contains? For example: if (userRepository.checkCredentials(username, password)) { // ... Or is it a better ...
3
votes
3answers
114 views

DDD: the Repository contract

I've read in various places that one important requirement in DDD is to have a bounded contract for the Repository: findByName(string name) findByEmail(string email) etc. And not provide a generic ...
3
votes
2answers
256 views

Can DTO's have nested DTO's?

I have the following domain model: public class Playlist { public long Id { get; set; } public string Title { get; set; } public virtual ICollection<Song> Songs { get; set; } } ...
3
votes
2answers
79 views

Should child entity classes have their own repositories?

I have several classes inheriting from an Admin class: Manager, Translator, etc. Admin is an aggregate, so should have its own Repository. However, some methods to find Managers or Translators might ...
3
votes
1answer
182 views

Reference a value objects parent entity object in RavenDb

I've been playing with RavenDB recently and there is something that is annoying me a little. I have an entity object with a series of value objects, e.g. class Foo { IList<Bar> Bars { ...
3
votes
1answer
196 views

Domain Model – Repositories – Communication across Sub-Systems

I am currently in the process of designing a system which will use multiple data sources to consume the required data. I am attempting to model the concepts shown below (would post an image but don't ...
3
votes
3answers
446 views

How should I implement my Repository (DDD) in C# to handle multiple calls for the same Aggregate Root

What class in my project should responsible for keeping track of which Aggregate Roots have already been created so as not to create two instances for the same Entity. Should my repository keep a list ...
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
1answer
368 views

ASP.NET MVC 2: Mechanics behind an Order / Order Line in a edit form

In this question I am looking for links/code to handle an IList<OrderLine> in an MVC 2 edit form. Specifically I am interested in sending a complete order to the client, then posting the edited ...
3
votes
3answers
402 views

Domain Driven Design Layout Question

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 a new Profile, I upload ...
3
votes
3answers
525 views

Is there a perfect code generation tool to generate MVC Storefront?

Does anybody know a good code generation tool (other than Subsonic because it doesn't support IQueryable in current version) to generate repository and other projects in a way Rob Conery worked in MVC ...
3
votes
3answers
1k views

DDD and Asynchronous Repositories

We're working on a rich client (written in Flex) that is connected to a Java backend, using both RMI and JMS. I was thinking about implementing the client in a DDD fashion so that it has Repositories ...
2
votes
2answers
90 views

How to do this in DDD without referencing the Repository from the domain entity?

I'm struggling hard to find a proper design to avoid referencing a Repository from an Entity... Let's say I've got the classic Customer and Order classes like so: public class Customer { ... ...
2
votes
2answers
178 views

Getting all aggregate root entities child entities?

I am attempting to refactor my application from a repository per entity to a repository per aggregate root. A basic example would be I have an entity root of Cars. Cars have hire contracts. As far as ...
2
votes
1answer
93 views

DDD - Complex ORM Mapping

I am writing a Java DDD application in which the database model is already designed and implemented. The problem is that my domain objects differs from the database model and the the ORM mapping is ...
2
votes
1answer
99 views

DDD/MVC: how to avoid hitting the Repository from the View?

After reading several other questions, it looks like it's not advisable to have an entity class use a Repository. So given these repositories: class RestaurantRepository { public function ...
2
votes
6answers
90 views

How do I determine the ID of an aggregate root added to a repository?

Say I have a generic repository interface as follows: public interface IRepository<T> { Add(T item); Delete(int itemId); Update(T item); } Typically the new ID of an item added ...
2
votes
1answer
410 views

Nhibernate - One-to-one mapping with Cascade all-delete-orphan, not deleting the orphan

I have an 'Interview' entity that has a one-to-one mapping with a 'FormSubmission' entity, the Interview entity is the dominant side so to speak, the mapping is: <class name="Interview"> ...
2
votes
2answers
244 views

How to make POCO work with Linq-to-SQL with complex relationships in DDD

I am struggling to find a way to make POCOs work with Linq-to-Sql when my domain model is not table-driven - meaning that my domain objects do not match-up with the database schema. For example, in ...
2
votes
1answer
607 views

MVC-3 Project Structure

I have the following for a project structure, these are all seperate projects, I was told to do it that way so not my choice. CORE --Self Explanitory DATA --Contains EF 4.1 EDMX, POCO's Generic ...
2
votes
2answers
113 views

How to test my repositories implementation?

I am using NUnit for test units. I have my interface on the domain so i am ready to make implementation of those interfaces in the persistence layer. My question is how do you actually make the unit ...
2
votes
1answer
344 views

Working with DataContext.GetTable<T>() to get a 'QueryProvider'

The DataContext.GetTable() method will return an object of type: System.Data.Linq.Table By doing that, I presume I haven't issued a call to the database to retrieve the entire table. Otherwise, ...
2
votes
2answers
163 views

Which layer should Repositories go in?

Which layer should the repository classes go in? Domain or Infrastructure?
2
votes
2answers
260 views

DDD: Repositories are in-memory collections of objects?

I've noticed Repository is usually implemented in either of the following ways: Method 1 void Add(object obj); void Remove(object obj); object GetBy(int id); Method 2 void Save(object obj); ...
2
votes
5answers
254 views

How to keep your unit tests simple and isolated and still guarantee DDD invariants?

DDD recommends that the domain objects should be in a valid state at any time. Aggregate roots are responsible for guaranteeing the invariants and Factories for assembling objects with all the ...
2
votes
4answers
972 views

ASP.NET MVC: what mechanic returns ViewModel objects?

As I understand it, Domain Models are classes that only describe the data (aggregate roots). They are POCOs and do not reference outside libraries (nothing special). View models on the other hand ...
2
votes
2answers
243 views

DDD: Trying to code sorting and filtering as it pertains to Poco, Repository, DTO, and DAO using C#?

I get a list of items from my Repository. Now I need to sort and filter them, which I believe would be done in the Repository for efficiency. I think there would be two ways of doing this in a DDD ...
2
votes
1answer
2k views

Approach for a (generic) DDD Repository with JPA/Spring: does it look wrong?

I'm pretty new to DDD and JPA. I'm working on a generic Repository with JPA and Spring. I really like the approaches exposed in the articles DDD: The Generic Repository and JPA implementation ...
2
votes
1answer
235 views

Simple Repository Question about Filtering and Sorting

I have a list of products coming from a repository. Simple enough. Now I want to add filtering and sorting. Sorting could happen outside of the repository since there are no efficiency gains doing ...
2
votes
2answers
294 views

repository pattern with a legacy database and Linq to SQL

I'm building an application on top of a legacy database (which I cannot change). I'm using Linq to SQL for the data access, which means I have a (Linq to SQL) class for each table. My domain model ...
2
votes
2answers
1k 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 presentation tier ...
2
votes
3answers
468 views

Questions regarding Domain driven Design

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 have clear understanding ...
2
votes
1answer
354 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-other-orm). However, ...
2
votes
4answers
363 views

Repository pattern and data type returned

I am using the repository pattern and was wondering about what data type I should return. In my database I have a string that is variable length that needs to be broken up based off of fixed lengths. ...

1 2 3