We recently debugged an Azure application after trying to move storage from local storage to cloud storage — the first step in moving the entire object to the cloud.
We ran into a problem where the local data store allowed us to store incorrectly initialized DateTime objects (initialized by DateTime.MinValue or "0") in the Azure storage table, but the cloud storage would give a "value out of range" when the value was committed to the table.
Is there a way for local storage to throw the same exceptions as the cloud?
Otherwise, is there a list of these things? I found an MSDN page about some of the differences , but there was nothing like it.
source share