Closed Thowk closed 6 years ago
Is this for .net core?
Yes, but I guess the same is on i.e net461
From: Greg Finzer notifications@github.com Sent: Thursday, August 9, 2018 5:38:01 PM To: ValeraT1982/ObjectsComparer Cc: Thowk; Author Subject: Re: [ValeraT1982/ObjectsComparer] ExpandoObject with collections (#2)
Is this for .net core?
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHubhttps://github.com/ValeraT1982/ObjectsComparer/issues/2#issuecomment-411801455, or mute the threadhttps://github.com/notifications/unsubscribe-auth/ARtemgASj9OofZ6EWVNOj5G1tTst9dGdks5uPFdZgaJpZM4V1rIv.
Sorry for later answer. Every time I go to vacation somebody has an issue :) It doesn't work because the type of "Transaction" property is "System.Collections.Generic.List
@Thowk, you can download solution and build it manually to have this issue fixed or wait for the next version to be released.
Resolved in 1.2
It seems to be a problem when comparing ExpandoObject containing collections.
I try to compare such jsons:
{ "Transaction": [ { "Name": "abc", "No": 101 } ] }
{ "Transaction": [ { "Name": "abc", "No": 102 } ] }
This is how my configuration looks like:
Compare returns 'true'. (JsonConvert.DeserializeObject comes from Newtonsoft.Json)
Do you know how to solve that problem (is it a bug, or not yet implemented functionality)?