Top "Ddd-repositories" questions

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

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 …

design-patterns repository-pattern ddd-repositories aggregateroot
How are Spring Data repositories actually implemented?

I have been working with Spring Data JPA repository in my project for some time and I know the below …

java spring spring-data repository-pattern ddd-repositories
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 …

c# .net entity-framework-4 domain-driven-design ddd-repositories
Using Generic Repository and Stored Procedures

I am working on an existing application the uses the Generic Repo pattern and EF6 database first. I am calling …

c# entity-framework stored-procedures ddd-repositories
How do Repositories fit with CQRS?

According to Fowler (here), a repository "mediates between the domain and data mapping layers, acting like an in-memory domain object …

domain-driven-design cqrs ddd-repositories
Django and domain driven design

I am confused about Domain Driven Design Approaches. From the sources on net I understood it is way of segregating …

python django domain-driven-design ddd-repositories
DDD repository and factory

In my application a few layers. In this topic will focus on Domain and Infrastructure layers. I have repository interface …

domain-driven-design repository-pattern factory-pattern ddd-repositories
Domain driven design repository implementation in infrastructure layer

I got a question on dependencies of DDD layered architecture. If the Repository implementation is in the infrastructure layer, that …

domain-driven-design ddd-repositories
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 …

domain-driven-design repository-pattern ddd-repositories