Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save robert-skarzycki/8a35ae9ac0d8cca1985cff0e022671b2 to your computer and use it in GitHub Desktop.
Save robert-skarzycki/8a35ae9ac0d8cca1985cff0e022671b2 to your computer and use it in GitHub Desktop.
Data for issue reproduction
public class Car
{
public Guid Id { get; set; }
public string Name { get; set; }
public Dictionary<string, AttributeValue> Attributes { get; set; }
}
public class AttributeValue
{
public Guid Id { get; set; }
public string Name { get; set; }
public string Value { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment