我有EF5并希望(有...)构建一个多层应用程序。 EF是我的持久层,我使用WCF为我的客户端。现在我的业务逻辑存在问题,我完全不明白。
我有一个应该保留一些东西的方法。当我使用.SaveChanges()将预订发送到数据库时,一切正常。
public bool bReservieren(Student oStudent, Korb oKorb, IEnumerable<Service> lServices, DateTime dtFrom, DateTime dtTo)
{
try
{
BeachChaireModelContainer context = new BeachChaireModelContainer();
Reservierung newReservation = context.Reservation.Create();
//Tried it with newReservation.Student = oStudent; But there is an
//error cause of the different context´s so I search the correct Student
//again. (same with Korb)
newReservation.Student = context.Student.Find(oStudent.Kartennummer);
newReservierung.Korb = context.Korb.Find(oKorb.KID);
newReservierung.dtVON = dtFrom;
newReservierung.dtBIS = dtTo;
newReservierung = context.Reservation.Add(newReservation);
//This if isnt relevant yet. lService is null in my tests
if (lServices != null)
{
foreach (var item in lServices)
{
newReservation.Service.Add(context.Service.Find(item.SeID));
}
}
context.SaveChanges();
return true;
}
catch (Exception)
{ }
return false;
}
因此,在执行此操作并调试之后,会创建一个包含所有正确引用的新预留!但当我尝试再次使用类似的东西获得预订时
//had to mention it is a new Methode with a new context, but this should
//be no Problem in my oppinion?
var query = from it in context.Reservation
select it;
我的学生和Korb属性SET是否为空值?在数据库中一切都是正确的。 (存储正确的外键)
有人知道这种行为吗?
换句话说,当我尝试使用另一个上下文再次获得预订时,我无法执行以下操作:
String test = newReservation.Student.Surename;
原因Student == null
答案 0 :(得分:0)
您很可能启用了延迟加载(通过将Student
属性设置为虚拟)。如果是这种情况,则从数据库加载时必须Include()
。
var query = from it in context.Reservation.Include("Student")
select it;