This repository was archived by the owner on Mar 26, 2025. It is now read-only.

Description
Changing the following in ProductDetails corrects JSON conversion exceptions when getting data back from the store:
// MP! was:
//public DateTimeOffset RevisionId { get; set; }
// MP! changed: To resolve JSON conversion exception.
// Type mapping was probably incorrect.
public string RevisionId { get; set; }
RevisionId does not sound like a DateTimeOffset value.