0
我有錯誤,當我嘗試使用此代碼新用戶添加到我的DATABSE:studentBindingSource.Add(new Student());錯誤SQL
private void btnAdd_Click(object sender, EventArgs e)
{
objState = EntityState.Added;
pic.Image = null;
pContainer.Enabled = true;
studentBindingSource.Add(new Student());
studentBindingSource.MoveLast();
txtFullName.Focus();
}
它看到了我一個錯誤錯誤System.InvalidOperationException:「這些對象添加到BindingSource列表必須是相同的類型「。
請幫忙