0
我有AA表TBL_Person
有五列:如何將一個表的特定列添加到數據集?
Person_ID, FirstName, LastName, Age, Location
,我有它返回一個數據集的方法:
public DataSet GetPerson()
{
SqlCommand _select = new SqlCommand();
_select.CommandText = "SP-GetAllPerson";
_select.CommandType = System.Data.CommandType.StoredProcedure;
_select.Connection = Connection.GetConnection;
SqlDataAdapter _daPerson = new SqlDataAdapter(_select);
DataSet _personDs = new DataSet();
_daCountry.Fill(_personDs, "[TBL_Person]");
return _personDs;
}
此方法將返回列的數據集:
Person_ID, FirstName, LastName, Age, Location
,但我想我的方法返回這些列的數據集:
FirstName, LastName, Age
我該怎麼辦?
也顯示你的SP代碼.. –
什麼意思_「我怎樣才能添加一個表的特定列到數據集」_?相應地更改您的存儲過程。如果你想在C#中改變它,問題將是_「我怎樣才能從數據集的表中刪除**特定的列」_? –
選擇要在數據集中顯示的列。 –