我有這段代碼。代碼從表格,表格內容,一些文本框和其他東西中獲取一些值。當我點擊按鈕提交按鈕時,我得到一個值,並輸入「st」(輸入class student)並放入數據庫。但它顯示了我一個例外列表屬性「得到 {....}」例外「System.StackOverflowException」爲什麼我得到異常「System.StackOverflowException」?
public StudentManager()
: base(ConfigurationManager.ConnectionStrings["con"].ConnectionString)
{
}
public override void Add(Student entity)
{
//add to database
}
protected void submitButton_Click(object sender, EventArgs e)
{
Student st = new Student();
st.id = Convert.ToInt32(IdTextBox.Text);
st.AVG = Convert.ToDouble(AVGTextBox.Text);
st.date = dateCalendar.TodaysDate;
st.educationInfo = educationInfoTextBox.Text;
faculty fa = new faculty();
fa.id = Convert.ToInt32(facultyDropDownList.SelectedValue);
st.faculty = fa;
st.fatherName = fatherNameTextBox.Text;
st.fName = fNameTextBox.Text;
st.lName = lNameTextBox.Text;
st.motherName = motherNameTextBox.Text;
st.password = passwordTextBox.Text;
st.personalInfo = personalInfoTextBox.Text;
StudentManager sm = new StudentManager();
sm.Add(st);
}
public class Student
{
public int id { get; set; }
public faculty faculty { get; set; }
public double AVG { get; set; }
public DateTime date { get; set; }
public string educationInfo { get; set; }
public string fatherName { get; set; }
public string fName { get; set; }
public string lName { get; set; }
public string motherName { get; set; }
public string password { get; set; }
public string personalInfo { get; set; }
private List<SqlParameter> Attributes;
public List<SqlParameter> attributes
{
get
{
Attributes = new List<SqlParameter>();
SqlParameter sp = new SqlParameter();
attributes.Add(new SqlParameter("id",this.id));
attributes.Add(new SqlParameter("faculty", this.faculty));
attributes.Add(new SqlParameter("AVG", this.AVG));
attributes.Add(new SqlParameter("date", date));
attributes.Add(new SqlParameter("educationInfo",educationInfo));
attributes.Add(new SqlParameter("fatherName", fatherName));
attributes.Add(new SqlParameter("lName", lName));
attributes.Add(new SqlParameter("motherName", motherName));
attributes.Add(new SqlParameter("password", password));
attributes.Add(new SqlParameter("personalInfo", personalInfo));
return Attributes;
}
}
}
請注意,通過約定屬性開頭的大寫字母和fi領域以小寫字母開頭。 – Servy
你打算在你的「getter」中調用'Attributes.Add'而不是'attributes.Add'嗎? –
@SamIam好吧,這將是一個很奇怪的,有一個吸氣劑,像這樣的突變... – Servy