2012-09-22 134 views
0

我想知道如何使用架構創建Azure表而不插入任何實體。隨着下面的代碼是在Azure上創建一個表:創建Azure表架構

StorageCredentialsAccountAndKey accountAndKey = new StorageCredentialsAccountAndKey("accountName", "accountKey"); 

     CloudStorageAccount storageAccount = new CloudStorageAccount(accountAndKey, true); 

     CloudTableClient tableClient = storageAccount.CreateCloudTableClient(); 

     string tableName = "mytable"; 

     tableClient.CreateTableIfNotExist(tableName); 

如何指定的模式,同時創造table.I需要創建一個空表(沒有任何記錄)與像CustomerFirstName,CustomerLastName,年齡..

自定義字段

問候, 維韋克

回答

2

Windows Azure的表沒有模式,所以沒有辦法做到這一點。 (注意:由於實現意外,本地存儲模擬器本質上具有模式,如果您使用模擬器,則可以嘗試插入並立即刪除具有您關心的所有屬性的實體。將不會對雲存儲產生影響,但仿真器會錯誤地保留一些架構。)