我目前正在开发一个使用 Azure 作为其数据库的 Windows 8 应用程序。在这个数据库中,我有 4 个表:
PlaceGroup
Places
PlaceComments
PlaceEvents
我想制作某种帐户系统,允许用户只更新/删除他的位置,即只允许带有他的 ID 的记录。例子:
我有一个 id=5 的地方
PlaceComments 表具有以下记录表结构: id PlaceID CommentBody
first record:
1 5 "Some text here"
second record
2 12 "Some text here"
我应该只能更新/删除第二条记录。我真的不知道该怎么做,所以我正在寻求一些帮助。