我有两个表 A,B ,它们的关系是 1 对 1,我有一个方法来获取 A 的信息,
并且实体A中有一个属性B,但是在我使用方法分离(A)之后,发现
实体 A 的属性 B 为空,我只想将分离的实体返回给客户端。
你能帮我如何让一个分离的实体A包含属性B吗?
代码片段
var a = Context.A.Include('B').Where(i.id=1) //the property B of entity a is not null
Context.Detach(a) ;// after executing this method the property B of entity a is null