-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Labels
Description
Example of code diagnostic:
// Good example
[ForMember<User, UserDto>(nameof(UserDto.TimeOfBirth))]
public static TimeOnly GetTimeOfBirth(User source) => new (source.DateOfBirth.UtcDateTime.TimeOfDay.Ticks);
// Bad example
[ForMember<User, UserDto>("TimeOfBirth")]
public static TimeOnly GetTimeOfBirth(User source) => new (source.DateOfBirth.UtcDateTime.TimeOfDay.Ticks);Reactions are currently unavailable