0
我已經生成了Linq的類到數據庫,我想在DataGridView中顯示這些表。一個表連接到另一個表,我想要顯示此表中的一些列。我創造了在那裏我定義的屬性部分類:來自部分類的屬性無法從DataGridView中的設計器訪問
public partial class Table
{
public long other_table_id
{
get { return this.other_table.id; }
set { }
}
}
,但我不能看到他們在Visual Studio 2010中的高級設計師,當我嘗試添加新列:/如果我複製此代碼生成的類,然後它的工作原理和我在設計師看到這個屬性...
我嘗試了所有這些atributes:
[System.ComponentModel.Browsable(true)]
[System.ComponentModel.EditorBrowsable(EditorBrowsableState.Always)]
[System.ComponentModel.Bindable(true)]
非常感謝!
沒有適用於我:( – Maros2710