You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> In real world applications it is often the case that database layer consists of entities that need to be mapped into DTOs for use on the business logic layer. Similar mapping is done for potentially huge amount of classes and we need a generic way to achieve this.
25
+
26
+
In plain words
27
+
28
+
> Converter pattern makes it easy to map instances of one class into instances of another class.
29
+
30
+
**Programmatic Example**
31
+
32
+
We need a generic solution for the mapping problem. To achieve this, let's introduce a generic converter.
0 commit comments