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,年齡..
自定義字段問候, 維韋克