Пример #1
0
        public ActionResult Index(string symbol)
        {
            StorageAccount      account    = new StorageAccount();
            ITable <StockTrend> stockTable = account.GetCloudTable <StockTrend>("stocktrend");
            var trends = stockTable.GetByPartition(symbol);

            return(Json(trends, JsonRequestBehavior.AllowGet));
        }