MVC3 表存储和帐户验证示例
有没有人看过有关如何将 MVC3 和 TableStorage 与 Azure 帐户验证结合使用的任何好示例。我看到的一切似乎仍然是 ASP.net 或者只是一个非常基本的示例。我很惊讶 Windows Azure 站点没有包含更多 MVC 示例。
Has anyone seen any good examples of how I can use MVC3 and TableStorage with Azure account validation. Everything I look at seems to still be ASP.net or just a very basic example. I am surprised the Windows Azure site doesn't include more MVC examples.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您到底需要什么?“Azure 帐户验证”是什么意思?
至于存储 - Microsoft.WindowsAzure.StorageClient.dll 是一个单一程序集,具有围绕存储 API 的常见包装类型。没有什么特定的技术。您可以在任何 .NET 程序集中使用存储客户端(当然,不能直接在 Silverlight 中)。但是,无论是 ASP.NET 应用程序、MVC 站点、WPF 应用程序还是 WinForms 应用程序,Windows Azure 存储上的所有操作都以相同的方式执行。因此,您可以在 MVC 应用程序中获取与 Azure 存储相关的代码并按原样使用。您只需要一个 MVC3 Web 角色,它是自 Windows Azure SDK 1.5 以来的标准且可用的项目模板。
What exactly do you need and what do you mean by "Azure account validation"?
As for Storage - the Microsoft.WindowsAzure.StorageClient.dll is a single assembly with common wrapping types around the Storage API. There is nothing technology specific. You can use storage client in any .NET assembly (well, not in Silverlight directly). But all operations over Windows Azure Storage are performed the same way regardless of whether it is a ASP.NET application, or MVC site, or WPF application, or WinForms application. So you may take the Azure Storage related code in your MVC application and use it as is. You just need an MVC3 Web Role, which is a standard and available project template since Windows Azure SDK 1.5.