コード例 #1
0
        public void AddWeather(WeatherBase weather)
        {
            TableOperation add = TableOperation.Insert(weather);

            _table.Execute(add);
        }
コード例 #2
0
        public void AddOrReplaceWeather(WeatherBase weather)
        {
            TableOperation add = TableOperation.InsertOrReplace(weather);

            _table.Execute(add);
        }