我正在执行这个存储过程,我想改变它,而不是只返回所有结果然后处理它们。我想将存储过程的第三列中的信息返回并显示到我的 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。