我有一些從上下文返回的數據。數據已被spCmsCategoriesReadHierarchy
拉。使用上下文實體框架填充數據集4
我需要從上下文獲取所有數據並填充我的數據集。我的最終目標是使用DataSet對象填充TreeView控件。
任何想法?感謝您的時間和耐心。
using (TestHierarchyEntities context = new TestHierarchyEntities())
{
int n = 0;
Int16 sl = 1;
ObjectParameter nn = new ObjectParameter("nn", typeof(int));
// Create a Data Set where adding the result of context
DataSet dataSet = new DataSet("myDataSet");
foreach (CmsCategory categories in context.spCmsCategoriesReadHierarchy(n,sl,nn))
{
}
}
如果您需要數據集,爲什麼使用EF?似乎浪費時間。 – Will 2011-01-07 14:12:48
我認爲你是對的!你知道如何使用上下文(EF)綁定TreeView嗎?謝謝 – GibboK 2011-01-07 14:16:44