In MySQL you can limit a query row result with LIMIT 10,20
How is this possible with the Take(10) function in C#?
I have a 700000+ database table where I want to limit 10 rows each and walk through the database table.
In MySQL you can limit a query row result with LIMIT 10,20
How is this possible with the Take(10) function in C#?
I have a 700000+ database table where I want to limit 10 rows each and walk through the database table.