エンティティを挿入せずにスキーマを使用して Azure テーブルを作成する方法を知りたいです。次のコードを使用すると、Azure にテーブルが作成されます。
StorageCredentialsAccountAndKey accountAndKey = new StorageCredentialsAccountAndKey("accountName", "accountKey");
CloudStorageAccount storageAccount = new CloudStorageAccount(accountAndKey, true);
CloudTableClient tableClient = storageAccount.CreateCloudTableClient();
string tableName = "mytable";
tableClient.CreateTableIfNotExist(tableName);
テーブルの作成中にスキーマを指定する方法。CustomerFirstName、CustomerLastName、Age などのカスタム フィールドを含む空のテーブル (レコードなし) を作成する必要があります。
よろしく、 Vivek