How do I do this
Select top 10 Foo from MyTable
in Linq to SQL?
|
2
|
|
|
|
|
|
This assumes that MyTable implements IQueryable. You may have to access that through a DataContext or some other provider. It also assumes that Foo is a column in MyTable that gets mapped to a property name. See http://blogs.msdn.com/vbteam/archive/2008/01/08/converting-sql-to-linq-part-7-union-top-subqueries-bill-horst.aspx for more detail. |
||||||||||
|
|
|
Use the Take(int n) method.
|
||
|
|
|
|
Use the take method:
In VB LINQ has a take expression:
|
||||
|
|
|
You would use the Take(N) method. |
||
|
|