我只想将标签与数据库绑定

时间:2014-02-14 15:56:04

标签: asp.net-mvc-4 razor label

我想在sql数据库中向标签razor MVC4显示数据。

我已经创建了课程

public class company
{
    public int ID { get; set; }
    public string name { get; set; }
    public string city { get; set; }
    public string discounttype { get; set; }
    public int discountrate { get; set; }
}

在.cshtml中

@html.labelfor (Model=>model.isim) //我实际上不知道如何写这部分。

你可以帮忙吗?

1 个答案:

答案 0 :(得分:1)

足以与您创建的模型建立视野并以这种方式显示数据

@model company
@html.Label(Model.name)

等每个属性