Property with Json as a string #772
-
I have this DTO: class SimpleDtoWithJson
{
public int Id { get; set; }
public string Json { get; set; }
}
await Verify(dto).IgnoreMember<SimpleDtoWithJson>(x => x.Json);
await VerifyJson(dto.Json).UseFileName("unique"); or await Verify(dto); or is there a third alternative where I can specify that |
Beta Was this translation helpful? Give feedback.
Answered by
SimonCropp
Feb 2, 2023
Replies: 1 comment 3 replies
-
how about this
|
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
OskarKlintrot
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
how about this