An Azure relational database service.
Hi,
I upgraded the xamarin forms project to xamarin maui. It compiles fine. However, when I try to use the app, a similar error occurs when I try to do a table.pullasync.
It is very odd. It happens at this line:
await Table.PullAsync(
Guid.NewGuid(), MemberTable.CreateQuery(), pullOptions);
at Newtonsoft.Json.JsonTextReader.ParseValue()
at Newtonsoft.Json.JsonTextReader.Read()
at Newtonsoft.Json.JsonReader.ReadAndMoveToContent()
at Newtonsoft.Json.JsonReader.ReadForType(JsonContract contract, Boolean hasConverter)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.Deserialize(JsonReader reader, Type objectType, Boolean checkAdditionalContent)
at Newtonsoft.Json.JsonSerializer.DeserializeInternal(JsonReader reader, Type objectType)
at Newtonsoft.Json.JsonSerializer.Deserialize(JsonReader reader, Type objectType)
at Newtonsoft.Json.JsonConvert.DeserializeObject(String value, Type type, JsonSerializerSettings settings)
at Newtonsoft.Json.JsonConvert.DeserializeObject[JToken](String value, JsonSerializerSettings settings)
at System.StringExtensions.ParseToJToken(String content, JsonSerializerSettings settings)
at Microsoft.WindowsAzure.MobileServices.Query.QueryResult.Parse(MobileServiceHttpResponse httpResponse, JsonSerializerSettings serializerSettings, Boolean validate)
at Microsoft.WindowsAzure.MobileServices.MobileServiceTable.ReadAsync(String uriString, MobileServiceFeatures features)
at Microsoft.WindowsAzure.MobileServices.Sync.PullAction.FollowNextLinks(QueryResult result)
at Microsoft.WindowsAzure.MobileServices.Sync.PullAction.ProcessTableAsync()
at Microsoft.WindowsAzure.MobileServices.Sync.TableAction.ExecuteAsync()
at Microsoft.WindowsAzure.MobileServices.Sync.MobileServiceSyncContext.ExecuteSyncAction(SyncAction action)
at Microsoft.WindowsAzure.MobileServices.Sync.MobileServiceSyncContext.PullAsync(String tableName, MobileServiceTableKind tableKind, String queryId, String query, MobileServiceRemoteTableOptions options, IDictionary`2 parameters, IEnumerable`1 relatedTables, MobileServiceObjectReader reader, CancellationToken cancellationToken, PullOptions pullOptions)
Any solution?
Thanks.
Kamal