尝试通过延迟加载刚添加的实体来获取属性失败。
我到目前为止找到的唯一解决方案是对注释代码进行解除注释,换句话说,创建另一个Manager,然后创建另一个Context,因为每个Manager都有一个Context实例,然后重新查询实体。 / p>
我还尝试在所有Managers之间创建一个共享的Context实例,但结果相同。 任何想法为什么重新创建上下文解决了它以及如何解决这个问题?
以下是我用来测试的代码:
IOrderManager ordManager = new OrderManager();
[TestMethod]
public void CategoryFromOrder()
{
Order order = new OrderBuilder()
.SetCategory(2)
.SetLegalForm(8)
.SetClientIdentifier(new Random().Next(11111111,99999999).ToString())
.SetLastName("Chaouachi")
.SetFirstName("Saif")
.SetQuantity(450)
.SetStatus(Order.StatusValues.New)
.SetAccountHolder("John")
.SetPrimaryKey(PrimaryKeyFactory.GetOrderPrimaryKey(null, 1, 2))
.Build();
int res = ordManager.AddOrder(order);
//ordManager = new OrderManager();
// order = ordManager.GetOrder(PrimaryKeyFactory.GetOrderPrimaryKey(res, 1, 2));
var categ = order.Category;
Assert.IsNotNull(categ);
}
答案 0 :(得分:3)
对于使用Code First Entity Framework的延迟加载,您需要一个代理对象(从原始POCO类继承的类的实例)。从你的代码中看不出来,但我希望原始对象是通过新的Order()创建的,如果你想要一个代理对象,你应该使用DataContext.Orders.Create()。生成的对象将是一个代理,延迟加载将起作用。
http://msdn.microsoft.com/en-us/library/gg679504(v=vs.113).aspx