Replies: 1 comment
-
This is supported since 4.0.0-next.2, see also #103. |
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
-
Lets say I have the following classes:
User
UserDto
If I wanted to map from
UserDto
toUser
. Is there a way that I can provide theCreatedAt
property from another source?So I can have something like
public partial User ToUser(UserDto dto, DateTime createdAt);
I cannot use before and after map as the only way to provide it is to the constructor.
Beta Was this translation helpful? Give feedback.
All reactions