2010-05-08 38 views

回答

2

(我不知道,如果這個工程中的WinForms,但我在ASP.NET中使用這個很多):

添加一個新的屬性,你的實體類,它用於數據綁定(連接其他屬性),例如:

public string DisplayName 
{ 
    get { return this.FirstName + " " + this.LastName; } 
} 
相關問題