Joel Weiss
Joel Weiss
Thanks for reporting, I verified that it is an issue, I will work on it as soon as I have a chance.
I am missing something, `ToString()` is not intercepted and is passed thru to the original target. ```csharp void Main() { Order order = new Order { Id = 123 };...
please provide me with an example of what happens and what you expect to happen.
I can not remember off the top of my head if there was in issue implementing support for `IDictionary`, but I haven't found the need.
I am not opposed to adding support, but I do not have time at the moment.
@tgattu primitives are not supported see [here](https://github.com/joelweiss/ChangeTracking/issues/4#issuecomment-154856170)
can you please provide a small repro with your error?
I don't know what you are trying to achieve. The reason it was failing is because you were not calling `IsInitialized = true` on the correct instance. This works ```csharp...