我正在努力让我的模型类型与 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
.