我在 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 数据库中唯一不可为空的字段是PatientId
列,它是一个标识列...请帮助!
提前致谢!
约格什·洛特利卡