gpt4 book ai didi

c# - Windows Azure 移动服务和序列化遇到困难

转载 作者:太空宇宙 更新时间:2023-11-03 13:48:12 25 4
gpt4 key购买 nike

我正在努力尝试让我的模型类型与 Windows Azure 移动服务一起使用。它工作正常,除非我添加以下成员:

    [DataMemberJsonConverter(ConverterType = typeof(DictionaryJsonConverter))]
public IDictionary<Tuple<int, int>, BoardSpaceState> pieceLocations { get; set; }


/**
* All of this serialization could probably be done better,
* but I've spent enough time trying to make it work already.
*/
public class DictionaryJsonConverter : IDataMemberJsonConverter
{
public static Tuple<int, int> tupleOfString(string str)
{
var match = Regex.Match(str, @"\((\d+), (\d+)\)");
// need to grab indexes 1 and 2 because 0 is the entire match
return Tuple.Create(int.Parse(match.Groups[1].Value), int.Parse(match.Groups[2].Value));
}

public object ConvertFromJson(IJsonValue val)
{
var dict = JsonConvert.DeserializeObject<Dictionary<string, string>>(val.GetString());
var deserialized = new Dictionary<Tuple<int, int>, BoardSpaceState>();
foreach (var pieceLoc in dict)
{
deserialized[tupleOfString(pieceLoc.Key)] = (BoardSpaceState) Enum.Parse(typeof(BoardSpaceState), pieceLoc.Value);
}
return deserialized;
}

public IJsonValue ConvertToJson(object instance)
{
var dict = (IDictionary<Tuple<int, int>, BoardSpaceState>)instance;
IDictionary<Tuple<int, int>, string> toSerialize = new Dictionary<Tuple<int, int>, string>();
foreach (var pieceLoc in dict)
{
/** There may be an easier way to convert the enums to strings
* http://stackoverflow.com/questions/2441290/json-serialization-of-c-sharp-enum-as-string
* By default, Json.NET just converts the enum to its numeric value, which is not helpful.
* There could also be a way to do these dictionary conversions in a more functional way.
*/
toSerialize[pieceLoc.Key] = pieceLoc.Value.ToString();
}

var serialized = JsonConvert.SerializeObject(toSerialize);
return JsonValue.CreateStringValue(serialized);
}
}

BoardSpaceState.cs:

public enum BoardSpaceState
{
FriendlyPieceShort,
FriendlyPieceTall,
OpponentPieceShort,
OpponentPieceTall,
None
}

这在 Azure 上保持得很好,我可以在管理门户中看到数据。但是,当我尝试使用 toListAsync() 加载数据时,我收到以下异常:

{"Object must implement IConvertible."} System.Exception {System.InvalidCastException}

at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider)\r\n
at Microsoft.WindowsAzure.MobileServices.TypeExtensions.ChangeType(Object value, Type desiredType)\r\n
at Microsoft.WindowsAzure.MobileServices.MobileServiceTableSerializer.Deserialize(IJsonValue value, Object instance, Boolean ignoreCustomSerialization)\r\n
at Microsoft.WindowsAzure.MobileServices.MobileServiceTableSerializer.Deserialize(IJsonValue value, Object instance)\r\n
at Microsoft.WindowsAzure.MobileServices.MobileServiceTableSerializer.Deserialize[T](IJsonValue value)\r\n
at System.Linq.Enumerable.WhereSelectEnumerableIterator`2.MoveNext()\r\n
at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)\r\n
at Microsoft.WindowsAzure.MobileServices.TotalCountList`1..ctor(IEnumerable`1 sequence)\r\n
at Microsoft.WindowsAzure.MobileServices.MobileServiceTable`1.<ToListAsync>d__3f.MoveNext()\r\n--- End of stack trace from previous location where exception was thrown ---\r\n
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)\r\n
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)\r\n at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()\r\n
at chivalry.DataManager.<withServerData>d__2.MoveNext() in c:\\Users\\Rosarch\\Documents\\Visual Studio 2012\\Projects\\chivalry\\chivalry\\DataManager.cs:line 35" string

HRESULT 为 -2147467262。

我做错了什么?

更新:

我收到错误的行是:

private IMobileServiceTable<Game> gameTable = App.MobileService.GetTable<Game>();
// ...
var games = await gameTable.ToListAsync(); // error here

无论如何,如果我只是返回new Dictionary<Tuple<int, int>, BoardSpaceState>(),我也会得到同样的错误。来自DictionaryJsonConverter.ConvertFromJson .

最佳答案

这似乎是 Azure 移动服务客户端 SDK 中的一个错误 - 我会将其提交给产品团队,感谢您报告它。

同时,有一个解决方法可以让它工作:而不是用接口(interface)类型声明 pieceLocations 变量,如果你用字典类型声明它,那么它就会工作 - 这是代码我刚刚尝试过。

public sealed partial class MainPage : Page
{
public static MobileServiceClient MobileService = new MobileServiceClient(
"https://YOUR-APP-NAME-HERE.azure-mobile.net/",
"YOUR-APP-KEY-HERE"
);

public MainPage()
{
this.InitializeComponent();
}

/// <summary>
/// Invoked when this page is about to be displayed in a Frame.
/// </summary>
/// <param name="e">Event data that describes how this page was reached. The Parameter
/// property is typically used to configure the page.</param>
protected override void OnNavigatedTo(NavigationEventArgs e)
{
}

private async void btnStart_Click_1(object sender, RoutedEventArgs e)
{
try
{
Game game = new Game();
game.pieceLocations = new Dictionary<Tuple<int, int>, BoardSpaceState>();
for (int i = 0; i < 5; i++)
{
for (int j = 0; j < 5; j++)
{
game.pieceLocations[Tuple.Create(i, j)] = BoardSpaceState.None;
}
}

game.pieceLocations[Tuple.Create(1, 2)] = BoardSpaceState.FriendlyPieceShort;
game.pieceLocations[Tuple.Create(2, 1)] = BoardSpaceState.FriendlyPieceTall;
game.pieceLocations[Tuple.Create(3, 4)] = BoardSpaceState.OpponentPieceShort;
game.pieceLocations[Tuple.Create(4, 3)] = BoardSpaceState.OpponentPieceTall;

var table = MobileService.GetTable<Game>();
await table.InsertAsync(game);
AddToDebug("Inserted game: ", game.Id);

AddToDebug("Now trying to retrieve it...");

var allGames = await table.ToListAsync();
AddToDebug("All games, length = {0}", allGames.Count);
}
catch (Exception ex)
{
AddToDebug("Error: {0}", ex);
}
}

void AddToDebug(string text, params object[] args)
{
if (args != null && args.Length > 0) text = string.Format(text, args);
this.txtDebug.Text = this.txtDebug.Text + text + Environment.NewLine;
}
}

[DataTable(Name = "Test")]
public class Game
{
public int Id { get; set; }
[DataMemberJsonConverter(ConverterType = typeof(DictionaryJsonConverter))]
public Dictionary<Tuple<int, int>, BoardSpaceState> pieceLocations { get; set; }
}

public enum BoardSpaceState
{
FriendlyPieceShort,
FriendlyPieceTall,
OpponentPieceShort,
OpponentPieceTall,
None
}

public class DictionaryJsonConverter : IDataMemberJsonConverter
{
public static Tuple<int, int> tupleOfString(string str)
{
var match = Regex.Match(str, @"\((\d+), (\d+)\)");
// need to grab indexes 1 and 2 because 0 is the entire match
return Tuple.Create(int.Parse(match.Groups[1].Value), int.Parse(match.Groups[2].Value));
}

public object ConvertFromJson(IJsonValue val)
{
var dict = JsonConvert.DeserializeObject<Dictionary<string, string>>(val.GetString());
var deserialized = new Dictionary<Tuple<int, int>, BoardSpaceState>();
foreach (var pieceLoc in dict)
{
deserialized[tupleOfString(pieceLoc.Key)] = (BoardSpaceState)Enum.Parse(typeof(BoardSpaceState), pieceLoc.Value);
}
return deserialized;
}

public IJsonValue ConvertToJson(object instance)
{
var dict = (IDictionary<Tuple<int, int>, BoardSpaceState>)instance;
IDictionary<Tuple<int, int>, string> toSerialize = new Dictionary<Tuple<int, int>, string>();
foreach (var pieceLoc in dict)
{
/** There may be an easier way to convert the enums to strings
* http://stackoverflow.com/questions/2441290/json-serialization-of-c-sharp-enum-as-string
* By default, Json.NET just converts the enum to its numeric value, which is not helpful.
* There could also be a way to do these dictionary conversions in a more functional way.
*/
toSerialize[pieceLoc.Key] = pieceLoc.Value.ToString();
}

var serialized = JsonConvert.SerializeObject(toSerialize);
return JsonValue.CreateStringValue(serialized);
}
}

关于c# - Windows Azure 移动服务和序列化遇到困难,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14543174/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com