Questions tagged as 'ddd'

2
answers

What is Cross-Cutting and what is its relationship to Aspect Oriented Programming (AOP)?

What is Cross-Cutting and what is its relationship with Aspect Oriented Programming (AOP)? And in a DDD architecture what is its function?     
asked by 27.08.2015 / 21:27
2
answers

Is DDD and Entity Framework mutually exclusive?

I was exchanging comments with two users here SOPT over DDD and Entity Framework . I have stated that DDD and Entity Framework are not mutually exclusive. Or are they? References: What it really i...
asked by 03.11.2016 / 17:35
2
answers

What are and how to identify aggregates in DDD?

In DDD there is the notion of aggregate. One setting I've seen there is as follows    Entity Compounds or Values Objects that are encapsulated in a single class. Aggregate serves to maintain the integrity of the model. We chose a class to ser...
asked by 05.02.2015 / 18:25
2
answers

Is it not feasible to use Domain-Driven Design working alone?

I have studied a lot about DDD and I have this question that has been bothering me since I started reading about "strategic design". I have been working with programming since 2009 and most of the time I have always worked alone. I have already...
asked by 15.02.2015 / 14:51
1
answer

Security in domain driven design

In a DDD architecture, on what layer is security (access control) implemented? What would the structure look like?     
asked by 10.03.2015 / 17:19
3
answers

How to avoid the use of setters in such cases?

In general object orientation it is advisable to avoid the use of setters. The usual justification for this is that logic that modifies the state of an object must be encapsulated in the object. Therefore, the ideal is the object to expose behav...
asked by 28.07.2016 / 05:43
1
answer

Simple Injector + UoW + DDD + Multiple Contexts + Entity Framework

I need to know how to apply IoC for two contexts. The scenario is as follows: I have a Layer called Core (allocates classes that I can reuse in other layers), where I put the interface of IDbContext, IUnitOfWork and UnitOfWork (among ot...
asked by 03.12.2016 / 20:58
3
answers

How to implement business rules or system rules using Domain Driven Design in C #?

I'm having second thoughts about how to separate business rules from system rules with DDD. If I have for example a class Usuario with id , nome , login , senha as properties. A domain rule would require a pass...
asked by 26.08.2015 / 23:49
4
answers

How to identify and when to use Value Object?

I'm studying DDD from the books of Eric Evans and Vernon. During the reading I came across the Value Object implementation, I even understood the concept but could not abstract into a real situation within a domain. I joined the following t...
asked by 28.08.2017 / 21:04
2
answers

What is the service layer in DDD?

Reading about DDD I've heard about the service layer and I'm a bit doubtful about it because from what I read a service can tell business logic. Basically the definition I saw is this:    Services are classes that contain business logic, but...
asked by 05.02.2015 / 19:28