Get Last N Records Using Linq-to-SQL
Join the DZone community and get the full member experience.
Join For FreeThe small post is about getting last n number of record(s) from the database table or from the collection using LINQ.
SQL
To get last n number of record(s) from table I do write the following query on my table records in T-SQL.
LINQ
In LINQ we achieve the same thing with the help of OrderByDescending function and Take function.
But to get the last record for the collection you make use of FirstOrDefault function as below
Read about the method use on MSDN
SQL
To get last n number of record(s) from table I do write the following query on my table records in T-SQL.
SELECT TOP n <fields> FROM Forms WHERE <field> = <data> ORDER BY <field> DESCAs you see in above query important thing is using order by with desc keyword means reversing the table records - (mostly we apply the order by desc on the primary key of the table).
LINQ
In LINQ we achieve the same thing with the help of OrderByDescending function and Take function.
var qry = db.ObjectCollection .Where(m => m.<field> == data) .OrderByDescending(m => m.<field>) .Take(n);In above LINQ query same as sql need to apply the where condition first than make collection reverse using order by function and to get top record you just need to make user of Take function.
But to get the last record for the collection you make use of FirstOrDefault function as below
var qry = db.ObjectCollection .Where(m => m.<field> == data) .OrderByDescending(m => m.<field>) .FirstOrDefault();
Read about the method use on MSDN
Database
Published at DZone with permission of Pranay Rana, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Trending
-
A Complete Guide to Agile Software Development
-
How AI Will Change Agile Project Management
-
Decoding eBPF Observability: How eBPF Transforms Observability as We Know It
-
How to Use an Anti-Corruption Layer Pattern for Improved Microservices Communication
Comments