基於在EF6數據庫值我創建使用EF6。我的模型的模型文字是這樣的:如何使用返回get方法
public partial class Good
{
public Good()
{
this.InnoviceDetails = new HashSet<InvoiceDetail>();
}
public int Id { get; set; }
public string Serial { get; set; }
public string HasTax { get; set; }
public string InitialAmount { get; set; }
public string Group { get; set; }
public virtual ICollection<InvoiceDetail> InnoviceDetails { get; set; }
}
其中一個我列的是HasTax和值這是和,但在mygridview我需要更改這些值(0,1)。我的意思是如果數值是1
顯示是如果是0
顯示否。我想要使用get
我的模型的方法做這些嗎?可能嗎?
Get方法檢查數據庫中的值並將適當的值返回到gridview
或表示層?
問候
你用什麼UI? Windows窗體,WPF,還是它是一個ASP.NET頁面? –
我使用Windows窗體 –
類似的問題已經被問到 - 嘗試閱讀:http://stackoverflow.com/questions/15267666/entity-framework-code-first-convert-between-class-boolean-and-column-integer ; http://stackoverflow.com/questions/19370104/convert-value-when-mapping; http://stackoverflow.com/questions/6708996/convert-from-to-string-in-database-to-boolean-property-entity-framework-4-1/6709186#6709186 –