通过实体从数据库中获取数据

时间:2016-05-04 06:43:16

标签: jquery entity-framework highcharts

我尝试使用实体框架。 我在sql中有表 即

Catg_id  Catg_type
1       Medical
2       Engineering
3       Other

我试过了 -

 protected void Page_Load(object sender, EventArgs e)
        {
            ProjectdbEntities a = new ProjectdbEntities();
            var b = a.Catg_type;
            foreach (var c in b)
            {
                string catname = c.Catg_type1;
            }

        }
        [WebMethod]
        public static string jqufunc()
        {

        }

我用高脚椅作为显示图表 image

在上图中,我想通过实体显示医疗,工程和其他计算机笔记本电脑 在jquery -

$(function () {

        var webmethod = "WebForm1.aspx/jqufunc";

        $.ajax({
            type: "POST",
            url: webmethod,
            data:JSON.stringify({ s:"xyx" }),
            contentType: "application/json;charset=utf-8",
            dataType: "json",
            success: function (response) {
                alert(response.d);
            }
        });
    });


    $(function () {
        $('#container').highcharts({
            chart: {
                type: 'bar'
            },
            title: {
                text: 'Computer info'
            },
            xAxis: {
                categories: ['Computers', 'Laptops', 'Other ']
            },
            yAxis: {
                title: {
                    text: 'Figures'
                }
            },
            series: [{
                name: 'Pentinum 4',
                data: [1, 0, 4]
            }, {
                name: 'Pentinum 3',
                data: [5, 7, 3]
            }, {
                name:'Core i7',
                data:[6,3,4]
            }]
        });
    });

现在我不想要硬代码,我想从数据库中获取数据并通过实体在图表中显示..我在页面加载中编码但是如何通过函数调用它 任何解决方案

0 个答案:

没有答案