如何编写LINQ查询来匹配SQL,如选择top 100 * from tab?

前端之家收集整理的这篇文章主要介绍了如何编写LINQ查询来匹配SQL,如选择top 100 * from tab?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
WIth Ria Service,我有一个 linq查询,如:
EntityQuery<Employee> query = from e in ctx.GetEmployeeQuery()  
                      orderby e.DateCreated descending
                              select e;

那么我想从这个查询获取前100条记录,比如sql
从员工中选择前100名*

如何编写linq查询

解决方法

EntityQuery<Employee> query = (from e in ctx.GetEmployeeQuery()  
                              orderby e.DateCreated descending
                              select e).Take (100);
原文链接:https://www.f2er.com/mssql/82345.html

猜你在找的MsSQL相关文章