このストアド プロシージャを実行していますが、すべての結果を返して処理するのではなく、変更したいと考えています。ストアド プロシージャの 3 列目の情報を winforms アプリの label.text に返して表示したいと考えています。どうすればそれを行うことができますか。
public IEnumerable GetGuids(int id)
{
using (SqlCommand _command = new SqlCommand("StoredProc"))
{
_command.Connection = new SqlConnection(conString);
_command.Connection.Open();
_command.CommandType = CommandType.StoredProcedure;
_command.Parameters.AddWithValue("@ItemID", id);
return _command.ExecuteReader();
}
}
次のように、ストアド プロシージャから 3 列目に返されるアイテムを表示したいと思います: itemRow1/itemRow2。