Replies: 2 comments 2 replies
-
We currently have no plans to create YouTube video tutorials, as we are not experienced in this. However, we would welcome videos from the community. Regarding your example, you need to create a new class: [Mapper]
public static partial class EmployeeMapper
{
// Mapperly will create an implementation for this method
public static partial EmployeeDTO MapEmployeeToDto(Employee employee);
} which can then be used like this: var employee = new Employee();
var myDto = EmployeeMapper.MapEmployeeToDto(employee); |
Beta Was this translation helpful? Give feedback.
2 replies
-
Nick Chapsas created a video explaining Mapperly: YouTube |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I don’t understand how to make the essence of the DTO through your package, the instructions that are written here are not clear, could you describe the whole example or record a video on YouTube
https://mapperly.riok.app/docs/getting-started/first-mapper - SOS
example:
End:
Beta Was this translation helpful? Give feedback.
All reactions