简体   繁体   English

Windows Azure代码参考

[英]windows azure code reference

I'm working with windows phone apps that using windows azure service to insert,update,read and delete and from here I only find several code reference for basic use, where can i get a much advance code for example, 我正在使用Windows Phone应用程序,这些应用程序使用Windows Azure服务插入,更新,读取和删除,并且从这里我只能找到一些基本使用的代码参考,例如,在哪里可以得到很多高级代码,

I want to read data from table address where the table id is "01231" and username is "user1" and here is what my database look like: 我想从表ID为“ 01231”且用户名为“ user1”的表地址中读取数据,这是数据库的外观:

table: address id:string name:string userid:string 表:地址ID:字符串名称:字符串用户ID:字符串

table: user userid:string username:string 表:用户userid:字符串用户名:字符串

how get documentation about all these operation? 如何获得有关所有这些操作的文档? what i only get is 我唯一得到的是

addressItem = await addressTable
                  .Where(table => table.placeId == hereRestDetail.placeId)
                  .ToCollectionAsync();

that use for getting data from addresstable where placeid = my own placeid that come from rest service 用于从地址表获取数据的地方,其中placeid =我自己的来自休息服务的placeid

As long as table.placeId and hereRestDetail.placeId are the same type the above is a valid way to match entries. 只要table.placeId和hereRestDetail.placeId是相同的类型,以上是匹配条目的有效方法。 Take a look here for more examples: http://www.windowsazure.com/en-us/documentation/articles/mobile-services-windows-phone-add-paging-data/ 在这里查看更多示例: http : //www.windowsazure.com/en-us/documentation/articles/mobile-services-windows-phone-add-paging-data/

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM