我想用下面的代碼(感謝DotNetJalps)來創建在MVC 3剃刀的圖形圖表:使用圖表助手檢索從模型或視圖模型數據在ASP.NET MVC 3剃刀圖表
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Helpers;
namespace CodeSimplifiedTest.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
ViewBag.Message = "Welcome to ASP.NET MVC!";
return View();
}
public ActionResult About()
{
return View();
}
public ActionResult DrawChart()
{
var chart = new Chart(width: 300, height: 200)
.AddSeries(
chartType: "bar",
xValue: new[] { "10 Records", "20 Records", "30 Records", "40 Records" },
yValues: new[] { "50", "60", "78", "80" })
.GetBytes("png");
return File(chart, "image/bytes");
}
}
}
但是
我想從SQL Server 2008 R2數據庫中檢索xValues和Yvalues ...我必須在xValue之後添加什麼代碼:和yValue:或者在控制器和視圖中的任何位置使用一些代碼來檢索數據庫中的數據?我嘗試了實體框架上下文...但它沒有工作。
由於
這將取決於你的表的模式,以及如何您的數據組織在這個SQL數據庫中以及你想使用的數據訪問技術。 –