我正在尝试编写代码来访问我的天蓝色本地开发存储。我首先为自己创建了一个新存储:
dsInit /forceCreate
我现在可以在 SSMS 中看到 DevelopmentStorageDb20090919 以及一些预先创建的表,例如 dbo.TableContainer、dbo.TableRow 等。
- 现在,我可以简单地通过 SSMS(例如 Employee 表)将表添加到该数据库并开始通过代码访问它们吗?这是做事的正确方法吗?
例如:
var svc = CloudStorageAccount.DevelopmentStorageAccount
.CreateCloudTableClient().GetDataServiceContext();
//"Employees" is the name of the table
svc.AddObject("Employees", new Employees("John Doe"));
svc.SaveChangesWithRetries();
2. 另外,一旦我完成了,我如何将表格和数据移植到实际的云帐户中?通过在那里运行脚本?