Windows Azure 初体验

最近看到windows azure 在做活动,只需花一块钱就可以体验一个月的windows azure. 于是,我就注册了一个账号也尝试一把云时代,传送门。 注册很简单的,成功后可以看到这个界面。

Windows Azure 初体验

然后,我就研究了一下怎么把网站发布到云上,在此分享一下。网站是简单的基于asp.net mvc + code first 比较简单。

首先新建一个asp.net mvc 的网站。在此我命名为 WindowsAzureMVC,为了支持code first 需要添加entity framework 的dll。右键管理NUGET程序包 添加EntityFramework.

Windows Azure 初体验

在web.config 文件中添加节点:

  <connectionStrings>
<add name="TestConnect" connectionString="Data Source=(localdb)\v11.0;Initial Catalog=Test;Integrated Security=True;Connect Timeout=15;Encrypt=False;TrustServerCertificate=False" providerName="System.Data.SqlClient" />
</connectionStrings>

再新建一个AzureDataContext类

    public class AzureDataContext : DbContext
{
public AzureDataContext()
: base("name=TestConnect")
{ } public DbSet<User> User { get; set; }
} public class User
{
public Guid Id { get; set; } public string Name { get; set; } public int Age { get; set; }
}

这个就是简单的数据了,表示一个数据库有一个表叫做User。

然后运行nuget命令 先打开Nuget 控制台 视图-》其他窗口-》程序包管理器控制台。

Windows Azure 初体验

输入Enable-Migrations 会自动生成一个Configuration类

    internal sealed class Configuration : DbMigrationsConfiguration<WindowsAzureMVC.Data.AzureDataContext>
{
public Configuration()
{
AutomaticMigrationDataLossAllowed = true;
AutomaticMigrationsEnabled = true;
} protected override void Seed(WindowsAzureMVC.Data.AzureDataContext context)
{
context.User.AddOrUpdate(p => p.Id, new User() { Id = Guid.NewGuid(), Age = , Name = "test" }); }
}

我在seed 方法中加了一个初始化数据。

然后输入 update-database 命令,成功之后 会看到生成的数据库。

Windows Azure 初体验

然后我在 MVC的controller 和view 里写了一些简单的代码。

         public ActionResult Index()
{
User user = new Data.User() { Id = Guid.NewGuid(), Name = "test", Age = new Random().Next(, ) }; azureDataContext.User.Add(user);
azureDataContext.SaveChanges();
List<User> userList = azureDataContext.User.ToList(); return View(userList);
}
 @model List<WindowsAzureMVC.Data.User>
@{
ViewBag.Title = "Home Page";
}
<div class="row">
<table class="table table-bordered">
<caption>用户列表</caption>
<thead>
<tr>
<th>姓名</th>
<th>年龄</th>
</tr>
</thead>
<tbody>
@foreach (var item in Model)
{
<tr>
<td>
@item.Name
</td>
<td>
@item.Age
</td>
</tr>
}
</tbody>
</table>
</div>

OK, 网站这边基本完成,比较简单的演示。

然后发布,首先我需要新建一个数据库,

Windows Azure 初体验

Windows Azure 初体验

Windows Azure 初体验

然后新建一个网站,

Windows Azure 初体验

之后我需要下载发布配置文件,

Windows Azure 初体验

下载的文件名叫justtest.chinacloudsites.cn.PublishSettings 之后就可以发布了,

右键 -》 发布

Windows Azure 初体验

Windows Azure 初体验

Windows Azure 初体验

Windows Azure 初体验

点击发布成功。地址是 http://justtest.chinacloudsites.cn/

基本搞定收工。这就是我的azure 初体验。

上一篇:Windows Azure 微软公有云体验(二) 存储成本比较分析


下一篇:Windows Azure初体验