VS2010 で EF4 を使用しており、次のコードがあります。
PatientInformation patientInformation = PatientInformation.CreatePatientInformation(3);
patientInformation.DateOfBirth = new DateTime(1983, 6, 13);
patientInformation.FamilyId = 1;
patientInformation.FirstName = "First";
patientInformation.LastName = "Patient";
ClinicEntity.PatientInformations.AddObject(patientInformation);
ClinicEntity.SaveChanges();
問題はAddObject()
、オブジェクトをコレクションに追加していないことであり、その理由がわかりません。エラーも発生しません。
私の SQL Server データベースで唯一の null 非許容フィールドPatientId
は、ID 列である列です...助けてください!
前もって感謝します!
ヨゲシュ・ロトリカル