程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> 關於.NET >> LINQ to SQL語句(17)之對象加載

LINQ to SQL語句(17)之對象加載

編輯:關於.NET

對象加載延遲加載

在查詢某對象時,實際上你只查詢該對象。不會同時自 動獲取這個對象。這就是延遲加載。

例如,您可能需要查看客戶數據和 訂單數據。你最初不一定需要檢索與每個客戶有關的所有訂單數據。其優點是你 可以使用延遲加載將額外信息的檢索操作延遲到你確實需要檢索它們時再進行。 請看下面的示例:檢索出來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)
  {
    //同時查看客 戶數據和訂單數據
  }
}

語句描述:原始查詢未請求數 據,在所檢索到各個對象的鏈接中導航如何能導致觸發對數據庫的新查詢。

預先加載: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<Customer>(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);
  }
}

語句描述:在原始查詢過程中使用 LoadWith 請求相關數據,以便稍 後在檢索到的各個對象中導航時不需要對數據庫進行額外的往返。

延遲加載:AssociateWith方法

使用 AssociateWith 方法指定子查詢以限制檢索 的數據量。

在下面的示例中,AssociateWith 方法將檢索的 Orders 限 制為當天尚未裝運的那些 Orders。如果沒有此方法,則會檢索所有 Orders,即 使只需要一個子集。但是生成SQL語句會發現生成了很多SQL語句。

NorthwindDataContext db2 = new NorthwindDataContext();
DataLoadOptions ds = new DataLoadOptions();
ds.AssociateWith<Customer>(
   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)
     {
      //可以查詢出cust.CustomerID, ord.OrderID, ord.ShipVia,
      //orderDetail.ProductID, orderDetail.Product.ProductName
    }
  }
}

語句描述:原始查詢未請求數據,在所檢索到各個對象的鏈接中導航 如何以觸發對數據庫的新查詢而告終。此示例還說明在延遲加載關系對象時可以 使用 Assoicate With 篩選它們。

預先加載:LoadWith方法和Associate With方法

這個例子說明:使用LoadWith方法來確保在檢索客戶信息的同時檢 索訂單信息,在檢索訂單信息的同時檢索訂單詳細信息, 僅僅訪問一次數據庫 。即可以在一個查詢中檢索許多對象。使用Associate With方法來限制訂單詳細 信息的排序規則。

NorthwindDataContext db2 = new NorthwindDataContext();
DataLoadOptions ds = new DataLoadOptions ();
ds.LoadWith<Customer>(p => p.Orders);
ds.LoadWith<Order>(p => p.OrderDetails);
ds.AssociateWith<Order>(
   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)
    {
      //查詢 cust.CustomerID, ord.OrderID
      //orderDetail.ProductID, orderDetail.Quantity
    }
  }
}

語句描 述:在原始查詢過程中使用 LoadWith 請求相關數據,以便稍後在檢索到的各個 對象中導航時此示例還說明在急切加載關系對象時可以使用 Assoicate With 對 它們進行排序。

加載重寫

這個例子在Category類裡提供了一個 LoadProducts分部方法。當產品的類別被加載的時候,就直接優先調用了 LoadProducts方法來查詢沒有貨源的產品。

private IEnumerable<Product> 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<Category>(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)
  {
    //查詢cat.CategoryID, prod.ProductID
  }
}

語句描述:重寫 Category 類中 的分部方法 LoadProducts。加載某種類別的產品時,調用 LoadProducts 以加 載此類別中未停產的產品。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved