摘要:
在一般情况下,当我们在.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... 阅读全文
摘要:
通过上一篇博文可以得知,Azure其实是个平台,上面跑的服务五花八门,可以相互分开使用,同时也可以相互结合。那我们应该如何来学习Azure呢?其实有很多种选择,正所谓条条大路通罗马, 官方的training kit 提供了五种选择分别是:Web Site,Virtual Machine,Cloud Service, Building Block Services,Mobile详情可以参看:通过Trainingkit对Azure有一个初步的了解我将这五种选择根据自己理解加以划分,希望能帮助刚刚接触Azure的人找到最适合自己的学习路径。Web SiteWeb site 是针对网站部署人员的,通过 阅读全文