Domain driven design (abbreviated as DDD) is a design methodology that focuses on the domain. What is an object and what is an attribute is determined by their place in the real world.
2
votes
1answer
89 views
IEnumerable and Predicate sets in .NET (complete, explained)
See a revised version in the answer below
GitHub Repository
Previously: Countable and uncountable sets in .NET (clean version).
Thesis There is a full featured support of countable sets in ...
1
vote
0answers
49 views
Countable and uncountable sets in .NET (set operators, demo)
Up-to-date version: IEnumerable and Predicate Sets in .NET (Complete, Explained).
Previously: Countable and uncountable sets in .NET (clean version).
Disclaimer: Please do not interpret my attempts ...
2
votes
1answer
76 views
Countable and uncountable sets in .NET (clean version)
Sorry, it used to be some retired garbage in Countable and uncountable sets. Now and here it is clean.
P.S. I would not like to say that this stuff is about to replace functional programming :) No, ...
3
votes
2answers
111 views
Countable and uncountable sets in .NET (IEnumerable and Predicate)
There is a full featured support of countable sets in .NET: IEnumerable<T>. What about uncountable sets; sets defined by predicate? How can they be ...
3
votes
1answer
459 views
Condition class
Up-to-date version: Countable and uncountable sets in .NET (IEnumerable and Predicate).
Here is my own predicate class; it is equipped with some operators. Demo:
...
4
votes
1answer
108 views
Querying the Google ads API
I have a method which relies heavily on object supplied by third party APIs. Below is my working code, is there any scope of improvement?
...
1
vote
2answers
83 views
Replacing an application service class with multiple command handlers
I have a Controller which uses an application service to accomplish its tasks. The service class is starting to grow big and developing multiple dependencies. So I am thinking of replacing the single ...
11
votes
2answers
3k views
Logging strategy setup
I finally set up my logging infrastructure to work as desired, however I feel like I had to do quite a lot things just to fulfill a few requirements. Now I'm worried if my approach has major ...
11
votes
2answers
379 views
First domain-driven User entity class
I'm still learning about domain driven design, and I have created my first entity class User.
Is this fully compliant with the DDD principles? Particularly my ...
6
votes
1answer
377 views
Implementing a domain model
My domain model consists mostly of simple DTOs, i.e. 'Data Transfer Objects' which this article distinguishes from 'Plain Old C# Objects', like this one:
...