如果我的問題不清楚,我很抱歉。如何讀取嵌套類的數據?
我有一個類包含一些屬性,其中一個是「Parent」,它與這個類的相同類型。
當我從數據庫中讀取數據時,我爲每個屬性設置了合適的值。 但我怎麼能把「父」屬性,當我從數據庫中讀取它作爲「ParentID」。
如果不清楚,我會把例子。
非常感謝您的高級。
這是我的課:
class smsPart
{
private int _id;
private smsPart _parent;
private string _name;
public int ID
{
get { return _id; }
set { _id = value; }
}
public smsPart Parent
{
get { return _parent; }
set { _parent = value; }
}
public string Name
{
get { return _name; }
set { _name = value; }
}
public smsPart()
{
this._id = 0;
this._parent = null;
this._name = null;
}
public smsPart(int pID, smsPart pParent, string pName, smsType pType)
{
this._id = pID;
this._parent = pParent;
this._name = pName;
}
}
,當我讀數據庫中的數據我填寫「ID」 int和「名稱」作爲字符串。
但我怎麼會設置「父」作爲「smsPart」,當我從數據庫中讀取它作爲「ParentID」int。??
一個代碼示例會幫助... –