我在从 EF 4.3 Code First 数据库加载实体时遇到问题。我已将我的代码简化为这个工作示例代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.Entity;
using System.ComponentModel.DataAnnotations;
using System.Data.Entity.Infrastructure;
namespace CodeFirst {
class Program {
static void Main(string[] args) {
Database.SetInitializer(new DropCreateDatabaseAlways<Context>());
Database.DefaultConnectionFactory = new SqlCeConnectionFactory("System.Data.SqlServerCe.4.0");
using (Context context = new Context()) {
A a = new A { B = new B { Foo = 1 } };
context.As.Add(a);
context.SaveChanges();
Print(context); // B has ID=1, Foo=1
}
using (Context context = new Context()) {
Print(context); // B is null
}
Console.ReadLine();
}
public static void Print(Context context) {
A a = context.As.Single();
Console.WriteLine("A: ID=" + a.Id);
if (a.B == null) {
Console.WriteLine("B: null");
}
else {
Console.WriteLine("B: ID=" + a.B.Id + ", Foo=" + a.B.Foo);
}
}
}
class Context : DbContext {
public DbSet<A> As { get; set; }
}
class A {
public int Id { get; set; }
public B B { get; set; }
}
class B {
public int Id { get; set; }
public int Foo { get; set; }
}
}
输出是:
A: ID=1
B: ID=1, Foo=1
A: ID=1
B: null
在这个示例代码中,由于某种原因,当我检索A
一个 newContext
时,它的子属性B
是null
. 如果我设置断点并在B
is处连接到数据库null
,一切看起来都井井有条:
Table: A
--------
Id B_Id
1 1
Table: B
--------
Id Foo
1 1
我只是想学习 Code First,所以我在这里可能有一个严重的误解,但这对我来说似乎很奇怪。谁能解释这种行为?