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.
Changing the following in ProductDetails corrects JSON conversion exceptions when getting data back from the store:
RevisionId does not sound like a DateTimeOffset value.