10 2013 档案
Windows Azure Mangement API 之 更方便的使用Mangement API
摘要:许多.Net 程序员在使用Azure Management API的时候都选择参考微软官方示例,通过创建HttpWebRequest来创建。或者自己创建类库来封装这些API,使之调用起来更加方便。其实微软已经存在着这么一个已经封装好的类库了,不过由于这个类库并没有任何官方文档来对其进行说明,所以一直没有太多程序员想到去用它,这就是WindowsAzure.ServiceManagement.Client 类库。要想使用这个类库,首先我们需要获取它, 目前我知道的获取它最新版本的方法是1, 打开Web platform installer, 搜索windows azure powershell
阅读全文
Azure Table storage 之改进DynamicTableEntity类为其添加动态语言扩展
摘要:在之前的一篇文章中提到,storage类库中包含一个可以用来动态获取Azure table storage 表结构的类-DynamicTableEntity。我们可以通过这个类,我们无需为每一个表提前声明一个class,也能够对其进行操作。但在我们要添加Entity到表中的时候会感觉到一点不舒服以下我所希望使用的该类的方式:dynamic entity = new DynamicTableEntity();entity.Name=”sam”;entity.Gender=true;…这样的形式而实际代码却是DynamicTableEntity entity1 = new DynamicTable
阅读全文
Windows Azure Table storage 之 动态Table类 DynamicTableEntity
摘要:在一般情况下,当我们在.net中使用Azure table storage的时候都会为该表建立一个TableEntity的派生类,如下所示。public class CustomerEntity : TableEntity{ public CustomerEntity(string lastName, string firstName) { this.PartitionKey = lastName; this.RowKey = firstName; } public CustomerEntity() { } public strin...
阅读全文
Windows Azure 如何学习Azure
摘要:通过上一篇博文可以得知,Azure其实是个平台,上面跑的服务五花八门,可以相互分开使用,同时也可以相互结合。那我们应该如何来学习Azure呢?其实有很多种选择,正所谓条条大路通罗马, 官方的training kit 提供了五种选择分别是:Web Site,Virtual Machine,Cloud Service, Building Block Services,Mobile详情可以参看:通过Trainingkit对Azure有一个初步的了解我将这五种选择根据自己理解加以划分,希望能帮助刚刚接触Azure的人找到最适合自己的学习路径。Web SiteWeb site 是针对网站部署人员的,通过
阅读全文
浙公网安备 33010602011771号