I am trying to create a string composed of a key followed by its value, such that the string looks something like:
key;value,key;value,key;value
So far I have tried to use concat:
var originalKeyValues = entity.ChangeTracker.OriginalValues.Keys.Concat(
entity.ChangeTracker.OriginalValues.Values).ToString();
...but this doesn't seem to produce what I want.
Both Keys and Values are Dictionary<string, object>