A tool to apply seed data from JSON files to Azure Table Storage.
- Windows
- Linux
- MacOS
simply run the tool by
azureseeder --directory "~/some/working/directory" --connectionString "UseDevelopmentStorage=true;"
above command will result in searching all JSON files in given directory and apply each file to Azure Table Storage with file name as a table name.
- Partition Key and Row Key must be a String.
- JSON file must be array of simple object (since Azure Table Storage only supports simple data type) more information here.
- JSON property name is case-sensitive.
Name | Required | Default Value | Description |
---|---|---|---|
directory | yes | - | Seed files directory. |
connectionString | yes | - | Azure Storage connection string. |
mode | no | Replace | Update mode strategy, supported values are (Replace, Merge). |