テーブルの主キーのステータスを IDENTITY に設定しました。VS にテーブルの別のフィールドを挿入しますが、このプログラムを実行するとプログラムにエラーが発生します。なんで?私の問題は何ですか?
私のテーブルのIDフィールドはIdentityに設定されています。
実行時エラーは次のとおりです。
Cannot insert explicit value for identity column in table 'IncomeTable' when IDENTITY_INSERT is set to OFF.
対で:
private void button1_Click(object sender, EventArgs e)
{
IncomeTable income = new IncomeTable();
income.amount_income = amount;
income.comment_income = comment;
income.date_income = date;
context.IncomeTables.InsertOnSubmit(income);
context.SubmitChanges();
}
検索しますが、この問題を解決できません。乾杯