有一个 EF 上下文和一个 Testenity 我想让下面的测试工作。
TestEntity testEntity = new TestEntity() { Name = "Hello World" };
context.TestEntities.AddObject(testEntity);
// missing Code
Assert.AreEqual(1, context.TestEntities.Count(), "Entity not in context!");
我知道它可以与 SaveChanges() 一起使用,但我不想将Entity 保存到datasource。