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

learn more… | top users | synonyms

0
votes
1answer
18 views

System generated integer entity ID's using DDD-style repositories with EF database first

We are implementing a DDD-based system in C#/.NET/EF database-first/SQL Server environment. Our domain entities are separate from EF-generated entities with repositories responsible for working with ...
0
votes
1answer
59 views

How to retrieve Aggregate Roots that don't have repositories?

Eric Evan's DDD book, pg. 152: Provide Repositories only for AGGREGATE roots that actually need direct access. 1. Should Aggregate Roots that don't need direct access be retrieved and saved ...
2
votes
1answer
54 views

Is protobuf-net suited for serializing arbitrary object/domain models?

I have been exploring the CQRS/DDD-principles and patterns for a while now and have started implementing a sample project where I have split my storage-model into a WriteModel and a ReadModel. The ...
1
vote
4answers
76 views

How do I populate my domain model from my repository if my properties have private setters?

In the domain core of my application, I have an Order object. It has private setters, since those properties should not be modified willy-nilly, but only within the context of performing one of the ...
1
vote
1answer
38 views

Getting list of heavy aggregates

Suppose we have such an aggregate in our domain that it is stored in table hierarchy three levels deep. Let's denote domain objects as Order-OrderItems-ItemAttributes. Let's also assume that we use ...
1
vote
2answers
107 views

How do I handle persistence and unit of work in DDD using Entity Framework?

I'm a little overwhelmed with all of the information on DDD, unit of work, domain services, app services, etc. I'm trying to figure out how a persistence-ignorant domain model ultimately gets ...
0
votes
1answer
54 views

How to determine when a root aggregate contains too many one-to-many relationships?

I am really struggling with the following scenario: Let's say I have a user aggregate. A user can create 1+ groups, messages, friends, photo galleries, etc. Now it seems like groups, messages, ...
2
votes
1answer
119 views

DDD: one-to-many relationship between user aggregate root and almost all entities in other aggregates

I have the following DDD scenario, grouped into the following aggregates: User, Friends(User Associations), File(for user uploading), Galleries(grouping of files), Messages(user communication), ...
0
votes
1answer
44 views

should a validation function access the repository directly?

I have the following in my application: Action Orm entity (From telerik open access) Repository(Of Action) AppService(Holds an instance of the repository) when I need to save an instance, I send the ...
1
vote
1answer
124 views

Repository Experiments with C# .NET and Entity Framework

I'm building an asset tracking application. Using SQL server 2008, C# .NET, and Entity Framework. This is my first experience creating a repository, which according to my research is meant to abstract ...
1
vote
2answers
195 views

DDD - Aggregate Root load/query performance

I'm playing with DDD and this question pop up. How I load child Aggregate Roots? Several performance issues would arise. Imagine the following example: public AggregateRoot1 { #region ...
1
vote
3answers
154 views

Aggregate roots, should they be responsible for deleting child objects?

I have a question in regarding aggregate roots, should they have the responsibility for deleting child objects or should that be up to the repository? What if I wanna query one file by its Id, should ...
1
vote
1answer
235 views

Factories, services, repository in DDD

I have some questions regarding factories, repositories and services in DDD. I have the following entities: Folder, file, FileData. In my opinion the "Folder" is an aggregate root and should have the ...
0
votes
1answer
164 views

Does repository implementation be a part of infrastructure?

In a DDD project, I have this structure: Infrastructure MyProj.Library (contains helper methods) MyProj.Factory (contains methods for IoC and DI) MyProj.Data (contains an implementation of ...
2
votes
2answers
174 views

DDD: inheritance and transactions

I am experimenting with Domain Driven Design and Event Sourcing. I am planning to use (developing in C#) NServiceBus, JOliver's EventStore and NES to bind them. I already have the infrastructure ...
1
vote
0answers
202 views

How to implement DDD with Doctrine2 within a Symfony2 project?

Well I'm trying to introduce myself to DDD, I'm very new to it and some concepts are still unclear. Here is what I understood so far: The domain is basically about data The persistence layer is not ...
0
votes
0answers
79 views

how to persist detached entity with spring roo

I am using spring roo in application. In spring MVC controller I have to create new object of other entity class. It is giving me exception dettached entity exception. My task is upload the excel ...
3
votes
4answers
233 views

Where to call repository.update in DDD?

I have a real scenario that is a perfect Domain Model design. It is a field that has multiple quadrants with different states on every quadrant. So my aggregate root is the field. Now i have one ...
0
votes
1answer
1k views

Mapping Entities with Entity Framework 5 code first

I have 2 entities, a Patient that has a collection of studies. public class Patient { public Guid Id { get; set; } public string Name { get; set; } public List<Study> Studies { get; ...
0
votes
1answer
107 views

Identity conflict in DDD with Repository

I'm following a database first approach in a sample app. The POCO classes are generated via t4 template and it will have the Identity properties that it carry from the database. For some classes which ...
4
votes
1answer
110 views

Are repositories something necessary only for unit testing?

Ayende wrote sometime ago a set of articles about how Repositories are the new Singletons pattern. I've read them all, I think and I was agree in several of his points. Most of the times I see ...
3
votes
2answers
274 views

nhibernate, could not resolve property QueryOver only one table

I have found a dozen of question similar to mine but none of them offered a solution to my problem. Thank you in advance Ok, I have this class public class User : IEntity { private ...
1
vote
2answers
220 views

Where to define the interfaces for a repository in an layered architecture?

Background I'm trying to create a simple application to really understand the whole stack of DDD+TDD+etc. My goal is to dynamically inject the DAL repository classes at runtime. This keeps my ...
0
votes
5answers
192 views

DDD - can a repository fetch an aggregate by something other than its identifier?

I model a User as an aggregate root and a User is composed of an Identifier value object as well as an Email value object. Both value objects can uniquely identify a User, however the email is allowed ...
2
votes
1answer
103 views

Repository pattern and data consistency

In my project I'm using repository pattern for business-layer. Reading alot about repository pattern I haven't found any information on how to keep business objects synchronized with data. Lets say ...
1
vote
1answer
913 views

Adding items to a collection using Entity Framework

I'm trying to follow the DDD Repository pattern with Entity Framework 4. But I'm having problems saving changes to collection properties of my aggregate roots. Consider my classes below. Item is my ...
1
vote
1answer
52 views

Domain Data Structures that hold Domain objects?

I have a position, and some entities that use position as it's identifier (geography, biome, and so on). If I want to get acess to them, I would need to retrieve each one by it's position, which would ...
2
votes
2answers
183 views

OSGi application design and DDD

After reading OSGi application design - am I abusing the service framework? and What is the best way of grouping OSGi bundles to make a coherent 'application', I'm now stuck with burning ...
1
vote
1answer
160 views

Abstraction layer between repository and data access code

I try to isolate repository from actual data storage implementation. I have little problem to create some simple query with this abstraction. Example I need list of orders with number of order lines ...
6
votes
2answers
295 views

Packaging repositories and their interfaces in DDD

In applications following DDD I worked on, we tend to have a Service Layer that contains the Services + Repositories + the interfaces for repositories and services, they all live in the same assembly, ...
3
votes
3answers
370 views

DDD - Duplication between service layer and repositories

I've worked on several applications that try to adhere to DDD principles, I noticed that we end up with situations where there is duplication between the Service Layer and the repositories that feels ...
3
votes
3answers
513 views

Repository pattern, POCO, ORM and intermediate entities

I am trying to figure out how to address this issue: I have 3 tables with a many-to-many relationship. Users *-* Roles *-* Permissions I use a ORM to obtain data from them. A method of my ...
1
vote
2answers
132 views

DDD Global Value Object

I have need of a TimePeriod (AM, PM, NIGHT, etc) reference in a number of Objects. eg. ScheduledMeeting, ActualMeeting. Although TimePeriod is in the database with an ID, it is definitely not an ...
1
vote
1answer
156 views

Should I add item using repository pattern or a create event if I am using domain events?

I am trying to understand the Domain Event pattern illustrated by Udi Dahan with regard to adding new domain entities in a certain situation. Now normally with entities I would create them and then ...
3
votes
2answers
211 views

Reconciling DDD, viewmodels, and performance

I am starting to learn about DDD and am concerned about the performance implications of retrieving entity objects from persistence and then restructuring them in a viewmodel for the UI. Let's say ...
3
votes
3answers
103 views

How to figure out which repository to call for different implementations of an interface?

I am just starting in DDD and have a question regarding interfaces of objects and repositories. Suppose I have the following objects public interface IPerson { ... } public class Student { ...
0
votes
1answer
104 views

update, delete of domain models

I am using Spring, hibernate for my . For Update I call repo.findById(id) to get the current instance, thereafter call model.setXXX() to update fields and finally, repo.save(mdl) to save it back. For ...
4
votes
2answers
136 views

Is DDD suited for all kinds of application?

One common reaction that I see for a lot of questions asked here and other forums are like "You don't need to do DDD for that. Its a simple CRUD application, DDD is an over-engineering". Well I am ...
3
votes
2answers
205 views

could domain models be aware of repositories?

May be for some domain logic implementation entities need access to repo for update/delete of self or any related entity. Does this sound right ??
0
votes
1answer
252 views

DDD: can a Repository return entities inside an aggregate?

I have a City aggregate, having a list of PointOfInterest entities. This latter entity lies logically inside the City aggregate for reasons that won't be explained here. No entity holds a link to ...
2
votes
1answer
236 views

doing entity delete in DDD

I am learning DDD and have this basic question :- it seems with factories, rich domain models, repositories the Create,Read,Update (of CRUD) are taken care of , but what about delete?? There could be ...
0
votes
0answers
127 views

Repository pattern services calling services

I have seen some implementations of the repository pattern, but looks like i'm not getting something this is my scenario: Class Invoice { Public InvoiceNumber { get; private set; } ...
0
votes
1answer
146 views

soft delete in DDD

I have a scenario where a given entity may be marked for soft delete or a hard delete based on some logic when a user requests delete. Approaching this problem from DDD paradigm, i see some issues ...
1
vote
2answers
79 views

resource lookup for entity construction in DDD

I am fairly new to DDD and here is my dilemma: I have to persist an entity A that has a reference to entity B (let us consider both are entity roots). The UI layer gathers all these info (at ...
2
votes
2answers
103 views

How to design domain with entity referencing entity on another sql server with NHibernate persistance

I need to design domain that has two simple entities: public class User { public virtual int Id { get; protected set; } public virtual string Email { get; protected set; } public virtual ...
2
votes
1answer
205 views

How to decouple repository and entities

This is a question on domain model design. Let's say for a domain design involving users and groups, we have the following interfaces to implement: interface IUser { string Name{get;} ...
4
votes
2answers
265 views

Connecting the dots with DDD

I have read Evans, Nilsson and McCarthy, amongst others, and understand the concepts and reasoning behind a domain driven design; however, I'm finding it difficult to put all of these together in a ...
1
vote
2answers
92 views

How to handle properties that exist “between” entities (in a many-to-many relationship in this case)?

I've found a few questions on modelling many-to-many relationships, but nothing that helps me solve my current problem. Scenario I'm modelling a domain that has Users and Challenges. Challenges have ...
4
votes
3answers
762 views

how to implement services and repositories on onion architecture?

I've been studying onion architecture for a couples days. I understand how the dependencies should always go towards the center and how to use dependency injection to accomplish this. But I have a ...
0
votes
3answers
215 views

NHibernate Interceptor clarification (on deletion/ dirty)

I might be in the process of trying something (bad), just to see what I come up with. For starters, we built an application in a DDD fashion - our opinion. The design is "classic" DDD, meaning we have ...

1 2 3 4