我想將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)
//其實我不知道如何寫這個部分。
你能幫忙嗎?
我不明白你的問題可以澄清 –
我創建了一個數據庫表:名稱爲「name」的公司。我通過實體框架模型連接。我怎麼能在標籤中顯示名字? – user3252936