i heed some help
i have try this sample and i have set up the windows azure storage for this sample
http://taylorcowanonline.com/?p=159
i runs just fine , but when i try to save it comes out with this error
NotSupportedException
the error is in the following code
i have not modyfeyd the code in any way , just running the sample as it is
privatevoidbutton1_Click(objectsender,
RoutedEventArgse)
{
TableServiceContextctx =
newTableServiceContext("https://zombiesnightoutegg.table.core.windows.net/",
creds);
string[] aliases = {"tacowan",
"dizzer",
"thedude",
"puzzlemaster",
"wp7owner"};
intrnd = random.Next(1000);
Scorescore =
newScore(rnd);
score.RowKey =
Guid.NewGuid().ToString();
score.Alias = aliases[rnd % 5];
ctx.AddObject(
"scores", score);
ctx.BeginSaveChanges(asyncResult =>
{
try{ ctx.EndSaveChanges(asyncResult);}
------------------------------------------------------this is where the error is
catch(Exceptionexception)
{
}
},
null);
}