我不知道如何正确完成这个 - 我有一个存储的过程,我想将结果作为 IEnumberable 返回
public IEnumerable GetGuids(int id)
{
SqlCommand _command = new SqlCommand("storedProc");
_command.CommandType = CommandType.StoredProcedure;
_command.Parameters.AddWithValue("@ItemID", id);
return _command.ExecuteReader();
}
当我运行它时,我得到:ExecuteReader: Connection property has not been initialized.