Skip to content

Instantly share code, notes, and snippets.

@pedrohenriquebr
Last active December 6, 2022 17:34
Show Gist options
  • Select an option

  • Save pedrohenriquebr/73df6a8e745ac574252426dca558abcd to your computer and use it in GitHub Desktop.

Select an option

Save pedrohenriquebr/73df6a8e745ac574252426dca558abcd to your computer and use it in GitHub Desktop.
PayloadConverter - used for value conversions
public class PayloadConverter<T>: ValueConverter<T, string>
{
public PayloadConverter()
: base(from => JsonSerializer.Serialize(from, (JsonSerializerOptions) null),
to => JsonSerializer.Deserialize<T>(to, (JsonSerializerOptions) null))
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment