Thursday, December 1

How to: Return or Skip Elements in a Sequence (LINQ to SQL)


How to: Return or Skip Elements in a Sequence (LINQ to SQL)

.NET Framework 4

Use the Take(Of TSource) operator to return a given number of elements in a sequence and then skip over the remainder.
Use the Skip(Of TSource) operator to skip over a given number of elements in a sequence and then return the remainder.
NoteNote
Take(Of TSource) and Skip(Of TSource) have certain limitations when they are used in queries against SQL Server 2000. For more information, see the "Skip and Take Exceptions in SQL Server 2000" entry in Troubleshooting (LINQ to SQL).
LINQ to SQL translates Skip(Of TSource) by using a subquery with the SQL NOT EXISTS clause. This translation has the following limitations:
  • The argument must be a set. Multisets are not supported, even if ordered.
  • The generated query can be much more complex than the query generated for the base query on which Skip(OfTSource) is applied. This complexity can cause decrease in performance or even a time-out.

The following example uses Take to select the first five Employees hired. Note that the collection is first sorted byHireDate.
IQueryable<Employee> firstHiredQuery =
    (from emp in db.Employees
    orderby emp.HireDate
    select emp)
    .Take(5);

foreach (Employee empObj in firstHiredQuery)
{
    Console.WriteLine("{0}, {1}", empObj.EmployeeID,
        empObj.HireDate);
}


The following example uses Skip(Of TSource) to select all except the 10 most expensive Products.
IQueryable<Product> lessExpensiveQuery =
    (from prod in db.Products
    orderby prod.UnitPrice descending
    select prod)
    .Skip(10);

foreach (Product prodObj in lessExpensiveQuery)
{
    Console.WriteLine(prodObj.ProductName);
}


The following example combines the Skip(Of TSource) and Take(Of TSource) methods to skip the first 50 records and then return the next 10.
var custQuery2 =
    (from cust in db.Customers
    orderby cust.ContactName
    select cust)
    .Skip(50).Take(10);

foreach (var custRecord in custQuery2)
{
    Console.WriteLine(custRecord.ContactName);
}


Take(Of TSource) and Skip(Of TSource) operations are well defined only against ordered sets. The semantics for unordered sets or multisets is undefined.
Because of the limitations on ordering in SQL, LINQ to SQL tries to move the ordering of the argument of the Take(OfTSource) or Skip(Of TSource) operator to the result of the operator.
Note Note
Translation is different for SQL Server 2000 and SQL Server 2005. If you plan to use Skip(Of TSource) with a query of any complexity, use SQL Server 2005.
Consider the following LINQ to SQL query for SQL Server 2000:
IQueryable<Customer> custQuery3 =
    (from custs in db.Customers
     where custs.City == "London"
     orderby custs.CustomerID
     select custs)
    .Skip(1).Take(1);

foreach (var custObj in custQuery3)
{
    Console.WriteLine(custObj.CustomerID);
}


LINQ to SQL moves the ordering to the end in the SQL code, as follows:
SELECT TOP 1 [t0].[CustomerID], [t0].[CompanyName],
FROM [Customers] AS [t0]
WHERE (NOT (EXISTS(
    SELECT NULL AS [EMPTY]
    FROM (
        SELECT TOP 1 [t1].[CustomerID]
        FROM [Customers] AS [t1]
        WHERE [t1].[City] = @p0
        ORDER BY [t1].[CustomerID]
        ) AS [t2]
    WHERE [t0].[CustomerID] = [t2].[CustomerID]
    ))) AND ([t0].[City] = @p1)
ORDER BY [t0].[CustomerID]
When Take(Of TSource) and Skip(Of TSource) are chained together, all the specified ordering must be consistent. Otherwise, the results are undefined.
For non-negative, constant integral arguments based on the SQL specification, both Take(Of TSource) and Skip(OfTSource) are well-defined.

<a href="http://phpweby.com/hostgator_coupon.php">hostgator coupon codes</a>

No comments:

Post a Comment

Please don't spam, spam comments is not allowed here.

.

ShibashishMnty
shibashish mohanty