天蓝色存储帐户
我正在尝试在 Azure 上部署应用程序,但遇到了一些问题。
在我的开发盒上,一切正常,但当我尝试在部署应用程序后使用该应用程序时,我遇到了问题。
在开发盒上,我有一个手动执行的操作,它在本地 sql server express 中创建测试表。
但我不知道如何在服务器上创建表? 所以当我运行我的网站应用程序时,它显示 TableNotFound。
你能指导我完成这最后一步吗? 我需要额外添加 sg 吗?
提前谢谢
I'm trying to deploy an application on Azure but I'm facing some problems.
on my dev box, all works fine but I have a problem when I'm trying to use the application once it is deployed.
on the dev box, I have an action that I do manually wich crates the test tables in my local sql server express.
but I do not know how to create the tables on the server ? so when I run my website application, it says TableNotFound.
Can sy guide me through this final step ? do I need to make sg additional ?
Thx in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
表存储客户端提供了在云存储中创建schema的方法; 我忘记了名字(稍后会查找); 当您初始化用作数据服务层的任何内容时调用它。
编辑:以下代码片段是我使用的:
其中
是您的数据上下文对象。The table storage client provides a method to create the schema in the cloud storage; I forget the name (will look it up in a second); call that when you initialise whatever you're using as your data service layer.
Edit: The following snippet is what I use:
where
<Context>
is your data context object.