我嘗試對數據表進行排序。要做到這一點,你對它進行排序,然後複製分類一進一出的數據表,如下所示 - How to query a DataTable in memory to fill another data table從Datatable中選擇並複製DataTable時出錯
碼 -
DataTable table = GetDataTableResults();
DataTable results = table.Select("SomeIntColumn > 0").CopyToDataTable();
在Visual Studio中,我看到的錯誤 -
'System.Array' does not contain a definition for 'CopyToDataTable' and
no extension method 'CopyToDataTable' accepting a first argument of type
'System.Array' could be found (are you missing a using directive or an
assembly reference?)
我該如何解決這個問題?
嘿!爲什麼是-1? – Steam
我得到了答案 - 請注意,.NET DLL與本機DLL不同。這個是.NET dll。 添加此.NET DLL的步驟 - 解決方案資源管理器>引用> .NET選項卡>在組件名稱列下,選擇System.Data.DataSetExtensions> ok> file> save all或ctrl + shift + s – Steam
System.Data.DataSetExtensions .dll丟失 - 解決了。 – Steam