Uninitialised JsonSerializer in Breeze SaveBundleToSaveMap sample
I'm attempting to use the SaveBundleToSaveMap snippet linked below to implement custom save handling on the server side of a breeze web api implementation. SaveBundleToSaveMap This sample does not work as is? (see below); their is a null reference exception which could use some attention. The SaveWorkState(provider, entitiesArray) constructor calls the ContextProvider.CreateEntityInfoFromJson(...) method which then calls (the class scoped) JsonSerializer.Deserialize(new JTokenReader(jo), entityType) method. The issue is that JsonSerializer is uninitialised and we get a null reference exeption.