IMobileServiceClient.PullAsync deadlock when trying to sync with Azure Mobile Services
问题 I have the classes below. public class AzureMobileDataContext : IAsyncInitialization { private static readonly Lazy<AzureMobileDataContext> lazy = new Lazy<AzureMobileDataContext> (() => new AzureMobileDataContext( new MobileServiceClient( "http://myservice.azure-mobile.net/", "123456789ABCDEFGHIJKLMNOP"))); public static AzureMobileDataContext Instance { get { return lazy.Value; } } public Task Initialization { get; private set; } public IMobileServiceClient Context { get; private set; }