1 対 1 の関係で新しい行を追加する必要がある場合、Add または Attach を指定する必要がありますか? また、必要な場合はどうすればよいですか?
//one tblContent to one tblContentData
//updating the tblContentData corresponding to a particular id in tblContent
int id = 12345;
tblContent entity = db.tblContents.Where(con => con.id == id)
.FirstOrDefault();
if (entity == null)
throw new Exception("id was bad");
if (entity.tblContentData == null)
entity.tblContentData = new tblContentData();
//proceed with updating the foreign keyed table