我想在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)
//我实际上不知道如何写这部分。
答案 0 :(得分:1)
足以与您创建的模型建立视野并以这种方式显示数据
@model company
@html.Label(Model.name)
等每个属性