-
Notifications
You must be signed in to change notification settings - Fork 22
Mapping Graphs
Leonardo Porro edited this page Jan 16, 2023
·
36 revisions
In Maths, a graph is a structure made of connected nodes (vertices and edges). For the scope of this library an Entity or DTO graph is a structure where the nodes are objects and the connection is the reference created by an object pointing to another object.
When a method is expecting a graph, it means the root entity along with a set or a subset of relationships is expected.
The library supports:
- ORM mapping from a DTO to an Entity where a query is performed and the given DTO data is mapped to the corresponding entities. This works like a combination of the well known libraries GraphDiff and AutoMapper in a single step.