テーブルのデータを更新し、その更新時に、最初のテーブルと同じフィールドを持つ他の履歴テーブルに日付を挿入します。
私のコードは次のとおりです。
public void SaveChanges()
{
objectdateContext.SaveChanges();
saveInHistoryTable(); // here how i can pass the current entity.
}
public void saveInHistoryTable(FirstTable f)
{
SecondTable s = new SecondTable();
s.id = f.id;
s.Name = f.Name;
objectdateContext.Insert(s);
}
よろしくお願いします。