Questions tagged as 'ddd'

2
answers

Where to create a Helpers layer?

I need to create a Helpers layer that will contain classes that will be made available for the entire project. These classes will contain functions like calculations, string cleaners, in short, those functions we use all the time ......
asked by 28.02.2018 / 10:59
1
answer

Can LINQ be considered a business rule?

Sometimes I pull active objects with LINQ expression. Using filtering with LINQ can be considered business rule and in a scenario like Domain-Driven Design (DDD))? What is the best place to use (in Domain services or in Infra repos...
asked by 28.01.2017 / 13:13
1
answer

What is the difference between OO and DDD?

I read about Domain Driven Design , it seems to use the concepts of orientação a objetos but it relies more on business rules. Is there nothing else that really differentiates OO from DDD ? If it is possible to exemplif...
asked by 03.04.2015 / 02:19
2
answers

Is there a template to document the "Ubiquitous language" in DDD?

I wonder if there is a template to follow for documentation of linguagem ubíqua or Ubiquitous language DDD . (ubiquitous language) Explaining better, would be something that would facilitate the search for some resource in...
asked by 17.06.2015 / 03:23
1
answer

DDD - What is a complex domain?

Domain-driven Design (DDD) is best applied to complex domains . What characterizes a complex domain? (please be more specific than "it has complex business rules" ). What would be examples of complex domains? How can I classify a...
asked by 19.01.2016 / 13:18
1
answer

Domain Modeling - Forms of payment

I'm modeling the sales part of my system and I came across the following situation. I have created a payment method record and the MONEY payment method is standard and can not be changed, deleted, etc. I use this form of payment in opening cas...
asked by 30.04.2015 / 18:50
1
answer

Using DataAnnotations in DDD Projects

We have a doubt that the analyst raised when using DataAnnotations in the ViewModel in projects that use DDD in the case has a Domain layer and in case it will not expand, this use would eliminate the domino layer because it is duplicating the f...
asked by 11.01.2018 / 12:46
1
answer

What is Feature Driven Development (FDD)?

I was researching on BDD, TDD and DDD and came across FDD (Feature Driven Development), after all: What is FDD? Does it have any relationship to BDD, TDD, and DDD?
asked by 17.08.2018 / 18:42
1
answer

Enum as Object Value in DDD

After many searches on the internet, I came across many divergent opinions ... In my application, I created enum EstadoCivil {Casado = 1, Solteiro = 2, Divorciado = 3} . Can it be classified as an Object Value, or is it simply an enumer...
asked by 27.12.2017 / 12:13
1
answer

Complex type can have Entity Type property?

I have an Address class that is Complex Type . Can it have a state property that is an Entity Type ? Class Code: public class Endereco { ... public string Logradouro { get; set; } public Estado Estado { get; set; } } public cl...
asked by 06.01.2016 / 18:59