Search Results

5
votes

What’s the Linq to SQL equivalent to TOP?

from m in MyTable take 10 select m.Foo This assumes that MyTable implements IQueryable. You may have to access that through a DataContext or some other provider. …
0
votes

Adding functonality to Linq-to-SQL objects to perform common selections

Check out my answer to "switch statement in linq" and see if that points you in the right direction... The technique i demonstrate there is the one that got me past the scary "no translati …