我想保存一个对象,然后从数据库中检索它,但不知何故,保存工作,但检索返回 null。
public static Work startWork(Work work)
{
Context.context.Work.AddObject(work);
Context.context.SaveChanges();
Work result = (from r in Context.context.Work
where r.ReceiptID == work.ReceiptID && r.begin == work.begin
select r).FirstOrDefault();
return result;
}
因此,我传递了一个已经拥有begin
并ReceiptID
设置的工作实例,以便我可以检索它,但它只返回 null。