-1
我想將數據集與屬性類值綁定。看看我的代碼。如何將屬性類對象綁定到數據集
public class BO_InputforgettingGrid
{
public string Brand { get; set; }
public string Market { get; set; }
public string season { get; set; }
public string Year { get; set; }
}
public DataSet Assortment_Criteria()
{
DataSet ds = new DataSet();
//want to bind the above property class to this dataset.
}
最後我的數據集應該包括品牌,市場,季,年爲行值
只想將所有業務對象名稱綁定到單列中的數據表或數據集。 – Venki 2015-02-09 11:19:59