All articles| All Pictures| All Softwares| All Video| Go home page| Write articles| Upload pictures

Reading number is top 10 articles
弹出窗口window.open()的参数列表_[Html教程]
asp.net2.0网站语法之对象标记语法
mssql安装提示已经安装信息,修改注册表_mssql学习_编程技术
Sql Server 2005 数据库维护计划_[SQL Server教程]
visual c++中调试窗口(Watch窗口)
Visual,C#,2005快速入门之运用作用域_[Asp.Net教程]
温故知新ASP.NET,2.0(C#)(3),-,SiteMap(站点地图)_[Asp.Net教程]
Microsoft,SQLServer安装示例_mssql学习_编程技术
ASP.NET2.0应用的全球化与本地化之本地化_.net资料_编程技术
小结:MYSQL数据库常用字符处理函数_php资料_编程技术
Reading number is top 10 pictures
From China fortress sora aoi2
Average female college students1
The girl of like self-time
2013中国四川省高考作文
Extremely rare TianShan Mountains snow lotus1
The little girl with long hair2
yy365网站上的美女1
运动的范冰冰2
中国文革时期的色情图片2
007 James. bond's new lover
Download software ranking
Love the forty days
Unix video tutorial17
Unix video tutorial13
传奇私服架设教程
Detective task-the top secret prostitution files
Jinling thirteen stock
Unix video tutorial20
XML+Web+Service开发教程
Ashlynn Video3
网络管理员第三版
归海一刀 published in(发表于) 2014/1/30 1:02:38 Edit(编辑)
LINQ体验(12)——LINQ,to,SQL语句之对象标识和对象加载_[Asp.Net教程]

LINQ体验(12)——LINQ,to,SQL语句之对象标识和对象加载_[Asp.Net教程]

LINQ体验(12)——LINQ to SQL语句之对象标识和对象加载_[Asp.Net教程]

对象标识



  • 运行库中的对象具有唯一标识。引用同一对象的两个变量实际上是引用此对象的同一实例。你更改一个变量后,可以通过另一个变量看到这些更改。
  • 关系数据库表中的行不具有唯一标识。由于每一行都具有唯一的主键,因此任何两行都不会共用同一键值。

实际上,通常我们是将数据从数据库中提取出来放入另一层中,应用程序在该层对数据进行处理。这就是 LINQ to SQL 支持的模型。将数据作为行从数据库中提取出来时,你不期望表示相同数据的两行实际上对应于相同的行实例。如果您查询特定客户两次,您将获得两行数据。每一行包含相同的信息。


对于对象。你期望在你反复向 DataContext 索取相同的信息时,它实际上会为你提供同一对象实例。你将它们设计为层次结构或关系图。你希望像检索实物一样检索它们,而不希望仅仅因为你多次索要同一内容而收到大量的复制实例。


在 LINQ to SQL 中,DataContext 管理对象标识。只要你从数据库中检索新行,该行就会由其主键记录到标识表中,并且会创建一个新的对象。只要您检索该行,就会将原始对象实例传递回应用程序。通过这种方式,DataContext 将数据库看到的标识(即主键)的概念转换成相应语言看到的标识(即实例)的概念。应用程序只看到处于第一次检索时的状态的对象。新数据如果不同,则会被丢弃。


LINQ to SQL 使用此方法来管理本地对象的完整性,以支持开放式更新。由于在最初创建对象后唯一发生的更改是由应用程序做出的,因此应用程序的意向是很明确的。如果在中间阶段外部某一方做了更改,则在调用 SubmitChanges() 时会识别出这些更改。


以上来自MSDN,的确,看了有点“正规”,下面我用两个例子说明一下。


对象缓存


在第一个示例中,如果我们执行同一查询两次,则每次都会收到对内存中同一对象的引用。很明显,cust1和cust2是同一个对象引用。

Customer cust1 = db.Customers.First(c => c.CustomerID == "BONAP");
Customer cust2 = db.Customers.First(c => c.CustomerID == "BONAP");

下面的示例中,如果您执行返回数据库中同一行的不同查询,则您每次都会收到对内存中同一对象的引用。cust1和cust2是同一个对象引用,但是数据库查询了两次。

Customer cust1 = db.Customers.First(c => c.CustomerID == "BONAP");
Customer cust2 = (
from o in db.Orders
where o.Customer.CustomerID == "BONAP"
select o )
.First()
.Customer;

对象加载


延迟加载


在查询某对象时,实际上你只查询该对象。不会同时自动获取这个对象。这就是延迟加载。


例如,您可能需要查看客户数据和订单数据。你最初不一定需要检索与每个客户有关的所有订单数据。其优点是你可以使用延迟加载将额外信息的检索操作延迟到你确实需要检索它们时再进行。请看下面的示例:检索出来CustomerID,就根据这个ID查询出OrderID。

var custs =
from c in db.Customers
where c.City == "Sao Paulo"
select c;
//上面的查询句法不会导致语句立即执行,仅仅是一个描述性的语句,只有需要的时候才会执行它
foreach (var cust in custs) {
foreach (var ord in cust.Orders) {
Console.WriteLine("CustomerID {0} has an OrderID {1}.",
cust.CustomerID, ord.OrderID);//同时查看客户数据和订单数据
}
}

LoadWith 方法:立即加载


你如果想要同时查询出一些对象的集合的方法。LINQ to SQL 提供了 DataLoadOptions用于立即加载对象。方法包括:
LoadWith 方法,用于立即加载与主目标相关的数据。
AssociateWith 方法,用于筛选为特定关系检索到的对象。


使用 LoadWith方法指定应同时检索与主目标相关的哪些数据。例如,如果你知道你需要有关客户的订单的信息,则可以使用 LoadWith 来确保在检索客户信息的同时检索订单信息。使用此方法可仅访问一次数据库,但同时获取两组信息。
在下面的示例中,我们通过设置DataLoadOptions,来指示DataContext在加载Customers的同时把对应的Orders一起加载,在执行查询时会检索位于Sao Paulo的所有 Customers 的所有 Orders。这样一来,连续访问 Customer 对象的 Orders 属性不会触发新的数据库查询。在执行时生成的SQL语句使用了左连接。

NorthwindDataContext db = new NorthwindDataContext();
DataLoadOptions ds = new DataLoadOptions();
ds.LoadWith(p => p.Orders);
db.LoadOptions = ds;
var custs = (
from c in db2.Customers
where c.City == "Sao Paulo"
select c);
foreach (var cust in custs) {
foreach (var ord in cust.Orders) {
Console.WriteLine("CustomerID {0} has an OrderID {1}.", cust.CustomerID,
ord.OrderID);
}
}

延迟加载:AssociateWith方法


使用 AssociateWith 方法指定子查询以限制检索的数据量。
在下面的示例中,AssociateWith 方法将检索的 Orders 限制为当天尚未装运的那些 Orders。如果没有此方法,则会检索所有 Orders,即使只需要一个子集。但是生成SQL语句会发现生成了很多SQL语句。

NorthwindDataContext db2 = new NorthwindDataContext();
DataLoadOptions ds = new DataLoadOptions();
ds.AssociateWith(p => p.Orders.Where(o=>o.ShipVia > 1));
db2.LoadOptions = ds;
var custs =
from c in db2.Customers
where c.City == "London"
select c;
foreach (var cust in custs) {
foreach (var ord in cust.Orders) {
foreach (var orderDetail in ord.OrderDetails) {
Console.WriteLine("CustomerID {0} has an OrderID {1} that ShipVia is {2} with ProductID
{3} that has name {4}.",cust.CustomerID, ord.OrderID, ord.ShipVia,
orderDetail.ProductID, orderDetail.Product.ProductName);
}
}
}

立即加载:LoadWith方法和Associate With方法


这个例子说明:使用LoadWith方法来确保在检索客户信息的同时检索订单信息,在检索订单信息的同时检索订单详细信息, 仅仅访问一次数据库。即可以在一个查询中检索许多对象。使用Associate With方法来限制订单详细信息的排序规则。

NorthwindDataContext db2 = new NorthwindDataContext();
DataLoadOptions ds = new DataLoadOptions();
ds.LoadWith(p => p.Orders);
ds.LoadWith(p => p.OrderDetails);
ds.AssociateWith(p=>p.OrderDetails.OrderBy(o=>o.Quantity));
db2.LoadOptions = ds;
var custs = (
from c in db2.Customers
where c.City == "London"
select c );
foreach (var cust in custs) {
foreach (var ord in cust.Orders) {
foreach (var orderDetail in ord.OrderDetails) {
Console.WriteLine("CustomerID {0} has an OrderID {1} with ProductID {2} that has
Quantity {3}.",cust.CustomerID, ord.OrderID, orderDetail.ProductID, orderDetail.Quantity );
}
}
}

优先加载


这个例子在Category类里提供了一个LoadProducts分部方法。当产品的类别被加载的时候,就直接优先调用了LoadProducts方法来查询没有货源的产品。

private IEnumerable LoadProducts(Category category)
{
//在执行LINQ to SQL的时候,这个LoadProducts分部方法优先加载执行,这里用存储过程也可以.
return this.Products.Where(p => p.CategoryID == category.CategoryID).Where(p=>!p.Discontinued);
}

执行下面的查询时,利用上面方法返回的数据进行下面的操作:

NorthwindDataContext db2 = new NorthwindDataContext();
DataLoadOptions ds = new DataLoadOptions();
ds.LoadWith(p => p.Products);
db2.LoadOptions = ds;
var q = (
from c in db2.Categories
where c.CategoryID < 3
select c);
foreach (var cat in q)
{
foreach (var prod in cat.Products)
{
Console.WriteLine("Category {0} has a ProductID {1} that Discontined = {2}.",
cat.CategoryID, prod.ProductID, prod.Discontinued);
}
}


作者:李永京(YJingLee's Blog)
出处:http://lyj.cnblogs.com
转载请注明此处,谢谢!







添加到del.icio.us 添加到新浪ViVi 添加到百度搜藏 添加到POCO网摘 添加到天天网摘365Key 添加到和讯网摘 添加到天极网摘 添加到黑米书签 添加到QQ书签 添加到雅虎收藏 添加到奇客发现 diigo it 添加到饭否 添加到飞豆订阅 添加到抓虾收藏 添加到鲜果订阅 digg it 貼到funP 添加到有道阅读 Live Favorites 添加到Newsvine 打印本页 用Email发送本页 在Facebook上分享


Disclaimer Privacy Policy About us Site Map

If you have any requirements, please contact webmaster。(如果有什么要求,请联系站长)
Copyright ©2011-
uuhomepage.com, Inc. All rights reserved.