《Entity Framework 6 Recipes》中文翻译系列 (25) ------ 第五章 加载实体和导航属性之加载完整的对象图和派生类型上的导航属性

翻译的初衷以及为什么选择《Entity Framework 6 Recipes》来学习,请看本系列开篇

5-5  加载完整的对象图

问题

  你有一个包含许多关联实体的模型,你想在一次查询中,加载完整的对象图实例。一般地,当一个页面视图需要呈现关联实体集时,你会选择这种方法,而不是延迟加载,因为延迟加载是通过一系列的短小查询来获取关联实体的。

解决方案

  假设你有如图5-20所示的概念模型。每门课程有很多节,每一节由一个老师教多名学生。

《Entity Framework 6 Recipes》中文翻译系列 (25) ------ 第五章 加载实体和导航属性之加载完整的对象图和派生类型上的导航属性

图5-20 一个包含许多关联实体的模型

  使用Include()方法和查询路径参数,通过一个查询,从数据库中获取所有的课程,课时,老师和学生,如代码清单5-12所示。

  using (var context = new EFRecipesEntities())
{
var course = new Course {Title = "Biology 101"};
var fred = new Instructor {Name = "Fred Jones"};
var julia = new Instructor {Name = "Julia Canfield"};
var section1 = new Section {Course = course, Instructor = fred};
var section2 = new Section {Course = course, Instructor = julia}; var jim = new Student {Name = "Jim Roberts"};
jim.Sections.Add(section1); var jerry = new Student {Name = "Jerry Jones"};
jerry.Sections.Add(section2); var susan = new Student {Name = "Susan O'Reilly"};
susan.Sections.Add(section1); var cathy = new Student {Name = "Cathy Ryan"};
cathy.Sections.Add(section2); course.Sections.Add(section1);
course.Sections.Add(section2); context.Students.Add(jim);
context.Students.Add(jerry);
context.Students.Add(susan);
context.Students.Add(cathy); context.Courses.Add(course);
context.SaveChanges();
} //字符串查询路径参数
using (var context = new EFRecipesEntities())
{
var graph = context.Courses
.Include("Sections.Instructor")
.Include("Sections.Students");
Console.WriteLine("Courses");
Console.WriteLine("======="); foreach (var course in graph)
{
Console.WriteLine("{0}", course.Title);
foreach (var section in course.Sections)
{
Console.WriteLine("\tSection: {0}, Instrutor: {1}", section.SectionId, section.Instructor.Name);
Console.WriteLine("\tStudents:");
foreach (var student in section.Students)
{
Console.WriteLine("\t\t{0}", student.Name);
}
Console.WriteLine("\n");
}
}
} // 强类型查询路径参数
using (var context = new EFRecipesEntities())
{
var graph = context.Courses
.Include(x => x.Sections.Select(y => y.Instructor))
.Include(x => x.Sections.Select(z => z.Students)); Console.WriteLine("Courses");
Console.WriteLine("======="); foreach (var course in graph)
{
Console.WriteLine("{0}", course.Title);
foreach (var section in course.Sections)
{
Console.WriteLine("\tSection: {0}, Instrutor: {1}", section.SectionId, section.Instructor.Name);
Console.WriteLine("\tStudents:");
foreach (var student in section.Students)
{
Console.WriteLine("\t\t{0}", student.Name);
}
Console.WriteLine("\n");
}
}
} Console.WriteLine("Press <enter> to continue...");
Console.ReadLine();

  代码清单5-12的输出如下:

Courses
Courses
=======
Biology
Section: , Instructor: Fred Jones
Students:
Jim Roberts
Susan O'Reilly
Section: , Instructor: Julia Canfield
Students:
Jerry Jones
Cathy Ryan

原理

  分别给Include()方法传递字符串和强类型形式的查询路径参数。查询路径代表我们想使用Include()方法加载的整个对象图路径。Include()方法,扩展查询包含查询路径中指定的实体对象。

  在代码清单5-12中,我们最先演示基于字符串形式参数的Include()方法。Include()方法第一次调用,通过表示对象图部分对象的查询路径将Secion扩展至Instructor。这使得查询包含了所有的课时(Sections)和它们的教师(Instructors)。然后在第一个Include()方法后链接另一个Include()方法,它包含一个将Secton扩展到Student的查询路径,这将使得查询包含所有课时(Sections)和它们的学生(Students)。最终结果就是,实例化了一个完整的对象图,它包含所有的Course实体和在模型中每个与它关联的实体。

  在代码的第二部分,我们演示了使用强类型查询路径参数的Include()方法,注意这两个Include()方法是如何结合一个参数,x.Sections,并使用Select()方法整合关联实体Instructor和Students的。

注意  接受强类型参数的重载方法Include(),是在命名空间System.Data.Entity中公布的扩展方法。要使用这个方法,你需要在你的类中使用using引用这个命名空间。

  你可以使用导航属性构造任何深度的查询路径,这给你加载部分或是完整的对象图带来很大的灵活性。实体框架会通过修剪掉重叠和重复的查询路径来优化查询

  Include()方法的语法和主义都看似简单。但不要被这种简单迷惑了,以为使用Include()方法是不需要付出性能代价的。调用多个Includ()方法预先加载数据,会迅速地增加生成的SQL语句的复杂性,同时,从数据库中返回的数据量也急剧上升。复杂的查询语句会导致产生低性能的查询计划,大数据量的返回,也会让实体框架花费大量的时间来移除重复的数据。所以你应该明智地使用Include()方法,确保它不会给你的应用带来潜在的性能问题。

5-6  加载派生类型上的导航属性

问题

  你有这样一个模型,有一个或多个派生类,它们在一个或多个实体的Has-a关系中(一个对象是另一个对象的一部分)。你想在一次数据库交互中预先加载所有关联的实体。

解决方案

  假设你有如图5-21所示的模型。

《Entity Framework 6 Recipes》中文翻译系列 (25) ------ 第五章 加载实体和导航属性之加载完整的对象图和派生类型上的导航属性

图5-21 一个包含 Plumbers(管道工人)、他们的JobSite(工作场所)和其它关联实体的模型

  在模型中,管道工人(Plumber)实体继承至手艺人(Tradesman)实体,一个管道工人(Plumber)有一个工作场所(JobSite),这是通过一个一对多关联表示的。工作场所(JobSite)类型继承至地点(Location)实体。Location有一个Phone,这是通过一个一对多关联表示的。最后,一个JobSite可能拥有0或者多个工头(Formen),也是通过一个一对多关联表示的。

  假设你想获取一个管道工人,他的工作场所,工作场所的电话,以及工作场所全部的工头。你想在一次数据库交互中返回这些数据。

  代码清单5-13演示,在一个查询中通过使用Includ()方法预先加载关联实体。

代码清单5-13.使用Include()方法在一次数据库交互中预先加载关联实体  

 using (var context = new EFRecipesEntities())
{
var foreman1 = new Foreman {Name = "Carl Ramsey"};
var foreman2 = new Foreman {Name = "Nancy Ortega"};
var phone = new Phone {Number = "817 867-5309"};
var jobsite = new JobSite
{
JobSiteName = "City Arena",
Address = "123 Main",
City = "Anytown",
State = "TX",
ZIPCode = "",
Phone = phone
};
jobsite.Foremen.Add(foreman1);
jobsite.Foremen.Add(foreman2);
var plumber = new Plumber {Name = "Jill Nichols", Email = "JNichols@plumbers.com", JobSite = jobsite};
context.Tradesmen.Add(plumber);
context.SaveChanges();
} using (var context = new EFRecipesEntities())
{
var plumber =
context.Tradesmen.OfType<Plumber>().Include("JobSite.Phone").Include("JobSite.Foremen").First();
Console.WriteLine("Plumber's Name: {0} ({1})", plumber.Name, plumber.Email);
Console.WriteLine("Job Site: {0}", plumber.JobSite.JobSiteName);
Console.WriteLine("Job Site Phone: {0}", plumber.JobSite.Phone.Number);
Console.WriteLine("Job Site Foremen:");
foreach (var boss in plumber.JobSite.Foremen)
{
Console.WriteLine("\t{0}", boss.Name);
}
} Console.WriteLine("Press <enter> to continue...");
Console.ReadLine();

代码清单5-13的输出如下:

Plumber's Name: Jill
Job Site: City Arena
Job Site Phone:
Job Site Foremen:
Carl Ramsey
Nancy Ortega

原理

  我们的查询以获取派生类型Plumber开始,为了获取它们,我们使用了OfType<Plumber>()方法,OfType<>()方法,从实体集中获取给定子类型的实例。

  我们想从Plumber中加载与之关联的实体JobSite和与JobSite关联的实体Phone。注意JobSite实体并没有导航属性Phone。但是JobSite派生至Location,Location有导航属性Phone。因为Phone是基类属性,所以派生类同样能使用,这就是使用继承的好处。它使查询路径可以简单地表示为:JobSite.Phone。

  然后,我再次使用查询路径和Include()方法,从JobSite实体中获取Foreman实体.JobSite和Foreman有一个一对多关联。注意导航属性的复数形式(从Foreman变成Foremen)。

  最后,我们使用First()方法选择第一个Plumber实体,这样将返回一个Plumber类型,而不是一个Plumber对象集合。

  生成的查询有点复杂,涉及了几个Join连接和子查询。与此对应的,使用延迟加载,将会需要多次数据库交互,这样会带来性能损失。特别是加载多个Plumbers时。

实体框架交流QQ群:  458326058,欢迎有兴趣的朋友加入一起交流

谢谢大家的持续关注,我的博客地址:http://www.cnblogs.com/VolcanoCloud/

上一篇:数据分析---《Python for Data Analysis》学习笔记【04】


下一篇:CDN网络(二)之配置和优化CDN核心缓存软件--squid