2

I have created a Windows Store App using Windows Azure Mobile Service, as explained by Scott Gu in channel 9 video - http://channel9.msdn.com/Series/Windows-Azure-Mobile-Services/Introduction-to-Windows-Azure-Mobile-Services

As explained in video and quick start tutorial, I have created a 'ToDoItem' table and I am able to run the app as expected. I wanted to know, if there is anyway to modify 'TodoItem' table structure and add few more columns to it and enhance Windows Store App to map those columns.

Thanks.

4

1 に答える 1

3

作成したテーブルにさらに列を追加する場合は、クラスに新しいプロパティを追加し、サービスに新しい項目を挿入するだけです。既定では、Azure Mobile Services のテーブルには動的スキーマ機能があります。追加のメンバーを含むリクエストが届いた場合に新しい列を追加すること。

これは、MSDN の Get Started With Data チュートリアルに示されています(「新しいテーブルをモバイル サービスに追加する」セクションを参照してください。手順 5 の下に注意してください)。

于 2013-04-04T18:40:45.890 に答える