Entity Framework 6 Recipes 2nd Edition(10-4)译 -> 从存储过程返回一个复杂类型

10-4. 从存储过程返回一个复杂类型

问题

想在方法中使用一个返回复杂类型的存储过程

解决方案

假设我们已经有如Figure 10-3.所示的模型,该Employee (雇员)模型包含EmployeeId,Name和一个复杂类型的Address属性,Address包含Employee地址信息:它是包含city, state, 和ZIP code的复杂类型EmployeeAddress

Figure 10-3. 一个Employee entity实体含有一个名为EmployeeAddress 复杂类型的属性

我们想要用一个存储过程返回复杂类型EmployeeAddress的地址集合

存储过程代码如Listing 10-11所示:

Listing 10-11. 通过指定City 返回所有Employee的所有Addresse信息的存储过程

create procedure [Chapter10].[GetEmployeeAddresses]

(@city varchar(50))

as

begin

select [address], city, [state], ZIP

from Chapter10.Employee where city = @city

end

接下来使用这个存储过程:

1. 1. 右击模型的设计视图,选择“从数据库更新模型”.在对话框中“存储过程和函数”下勾选Chapter10/

GetEmployeeAddresses.点击“完成”.

2.( 译注:我的环境是win10+vs2013+ef6.1.3,是不需要这步的,第1步已经把这步也完成了,只是最后的“返回以下内容的集合”里的名称也是它自动创建的,必须修改为EmployeeAddress)右击模型的设计视图, 选择“新增“ ? 函数导入. 从“存储过程/函数名称”下拉框中选择GetEmployeeAddresses. 在“函数导入名称“文本框中输入:GetEmployeeAddresses. 这个就是在模型中的方法名称.在“返回以下内容的集合“里勾选“复杂”,在下拉框里选择EmployeeAddress.单击“确定”.

3. 接下来就是使用GetEmployeeAddresses存储过程,代码如 Listing 10-12 所示:

Listing 10-12.模型中的GetEmployeeAddresses()方法使用GetEmployeeAddresses存储过程

class Program

{

static void Main(string[] args)

{

using (var context = new EFRecipesEntities())

{

context.Database.ExecuteSqlCommand("delete from chapter10.Employee");

var emp1 = new Employee

{

Name = "Lisa Jefferies",

Address = new EmployeeAddress

{

Address = "100 E. Main",

City = "Fort Worth",

State = "TX",

ZIP = "76106"

}

};

var emp2 = new Employee

{

Name = "Robert Jones",

Address = new EmployeeAddress

{

Address = "3920 South Beach",

City = "Fort Worth",

State = "TX",

ZIP = "76102"

}

};

var emp3 = new Employee

{

Name = "Steven Chue",

Address = new EmployeeAddress

{

Address = "129 Barker",

City = "Euless",

State = "TX",

ZIP = "76092"

}

};

var emp4 = new Employee

{

Name = "Karen Stevens",

Address = new EmployeeAddress

{

Address = "108 W. Parker",

City = "Fort Worth",

State = "TX",

ZIP = "76102"

}

};

context.Employees.Add(emp1);

context.Employees.Add(emp2);

context.Employees.Add(emp3);

context.Employees.Add(emp4);

context.SaveChanges();

}

using (var context = new EFRecipesEntities())

{

Console.WriteLine("Employee addresses in Fort Worth, TX");

foreach (var address in context.GetEmployeeAddresses("Fort Worth"))

{

Console.WriteLine("{0}, {1}, {2}, {3}", address.Address,

address.City, address.State, address.ZIP);

}

}

Console.WriteLine("\nPress any key to exit...");

Console.ReadKey();

}

}

输出结果如下Listing 10-12所示:

===================================================================

Employee addresses in Fort Worth, TX

100 E. Main, Fort Worth, TX, 76106

3920 South Beach, Fort Worth, TX, 76102

108 W. Parker, Fort Worth, TX, 76102

=================================================================================

它是如何工作的

复杂类型提供一种便利的方式重构重复的一组属性到一个单一的类型,而且这类型可重用于多个实体. 在本小节, 我们创建了一个根据给定城市返回所有员工的所有地址信息的存储过程,我们把存储过程中的列映射到复杂类型EmployeeAddress里的字段. 方法GetEmployeeAdresses() 是通过“函数导入”向导创建的,它返回一个EmployeeAddress类型的实例集合.

复杂类型通常用在返回任意类型数据的存储过程上. 而且这些数据不是必须映射到任何模型里的实体. 即使复杂类型不会被object contex 跟踪, 但它也是一个轻量级并且有效率的处理模型里的数据的工具。

附:创建示例用到的数据库的脚本文件

时间: 2024-10-18 23:38:28

Entity Framework 6 Recipes 2nd Edition(10-4)译 -> 从存储过程返回一个复杂类型的相关文章

Entity Framework 6 Recipes 2nd Edition(9-3)译->找出Web API中发生了什么变化

9-3. 找出Web API中发生了什么变化 问题 想通过基于REST的Web API服务对数据库进行插入,删除和修改对象图,而不必为每个实体类编写单独的更新方法. 此外, 用EF6的Code Frist实现数据访问管理. 本例,我们模拟一个N层场景,用单独的客户端(控制台应用)来调用单独的基于REST服务的Web网站(WEB API应用) . 注意:每层使用单独的Visual Studio 解决方案, 这样更方便配置.调试和模拟一个N层应用. 假设有一个如Figure 9-3所示的旅行社和预订

Entity Framework 6 Recipes 2nd Edition(13-4)译 -> 有效地创建一个搜索查询

问题 你想用LINQ写一个搜索查询,能被转换成更有效率的SQL.另外,你想用EF的CodeFirst方式实现. 解决方案 假设你有如下Figure 13-6所示的模型 Figure 13-6. A simple model with a Reservation entity            首先,这个例子用EF的CodeFirst方式实现,在Listing 13-10,我们创建实体类Reservation Listing 13-10. The Reservation Entity Obje

Entity Framework 6 Recipes 2nd Edition(9-4)译->Web API 的客户端实现修改跟踪

9-4. Web API 的客户端实现修改跟踪 问题 我们想通过客户端更新实体类,调用基于REST的Web API 服务实现把一个对象图的插入.删除和修改等数据库操作.此外, 我们想通过EF6的Code First方式实现对数据的访问. 本例,我们模拟一个N层场景,用单独的控制台应用程序作为客户端,调用Web API服务(web api项目). 注:每个层用一个单独的解决方案,这样有助于调试和模拟N层应用. 解决方案 假设我们一个如Figure 9-4.所示模型 Figure 9-4. A 客户

Entity Framework 6 Recipes 2nd Edition(9-1)译->用Web Api更新单独分离的实体

第九章 在N层结构的应用程序中使用EF 不是所有的应用都能完全地写入到一个单个的过程中(就是驻留在一个单一的物理层中),实际上,在当今不断发展的网络世界,大量的应用程序的结构包含经典的表现层,应用程,和数据层,并且它们可能分布在多台计算机上,被分布到一台单独的计算机上的应用程序的某个领域的逻辑层,并不过多地涉及代理服务器编码,序列化,和网络协议,应用程序可以跨越很多设备,从小到一个移动设备到大到一个包含企业所有账户信息的数据服务器. 幸运的是,EF可应用于WCF,WEB Api等诸如此类的多层框

Entity Framework 6 Recipes 2nd Edition(13-3)译 -> 为一个只读的访问获取实体

问题 你想有效地获取只是用来显示不会更新的操作的实体.另外,你想用CodeFirst的方式来实现 解决方案 一个非常常见行为,尤其是网站,就是只是让用户浏览数据.大多数情况下,用户不会更新数据.在这种情况下,你可以通过避开上下文的缓存和修改跟踪来提高代码性能,你可以非常简单地使用AsNoTracking方法来实现. 让我们假设你一个应用程序来管理doctor(医生)的appointments(预约),你的模型如下图Figure 13-5. Figure 13-5. A model for man

Entity Framework 6 Recipes 2nd Edition(13-2)译 -> 用实体键获取一个单独的实体

问题 不管你用DBFirst,ModelFirst或是CodeFirst的方式,你想用实体键获取一个单独的实体.在本例中,我们用CodeFirst的方式. 解决方案 假设你有一个模型表示一个Painting(绘画)类型的实体,如Figure 13-2所示: Figure 13-2. The Painting entity type in our model 在代码In Listing 13-2,我们创建实体类Painting. public class Painting { public str

Entity Framework 6 Recipes 2nd Edition(13-5)译 -> 使POCO的修改追踪更高

问题 你正在使用POCO,你想提高修改跟踪的性能,同时使内存消耗更少.另外,你想通过EF的CodeFirst方式来实现. 解决方案 假设你有一个关于Account(帐户)和相关的Payments(支付)的模型,如Figure 13-7 Figure 13-7. A model with an Account entity and a related Payment   首先,本例用EF的CodeFirst方式实现,在Listing 13-16,我们创建实体类:Account和Payment.为达

Entity Framework 6 Recipes 2nd Edition(目录索引)

Chapter01. Getting Started with Entity Framework / 实体框架入门 1-1. A Brief Tour of the Entity Framework World / 简单浏览实体框架世界 goto1-2. Using Entity Framework / 使用实体框架 Chapter02. Entity Data Modeling Fundamentals / 实体数据建模基础 2-1. Creating a Simple Model2-2. C

Entity Framework 6 Recipes 2nd Edition(11-2)译 -> 为一个”模型定义”函数返回一个计算列

11-3. 为一个”模型定义”函数返回一个计算列 问题 想从”模型定义”函数里返回一个计算列 解决方案 假设我们有一个员工(Employee)实体,属性有: FirstName, LastName,和BirthDate, 如 Figure 11-3所示. Figure 11-3. An Employee entity with a few typical properties 我们想要创建一个”模型定义”函数,让它返回FirstName 和LastName 合并后的full name . 我们想