ra0o0f / arangoclient.net

ArangoDB .NET Client with LINQ support
Apache License 2.0
99 stars 37 forks source link

Paging #89

Open adifabio opened 7 years ago

adifabio commented 7 years ago

Got the error: "This overload of the method 'ArangoDB.Client.QueryableExtensions.Limit' is currently not supported."

Is there any plans to support limit?

ra0o0f commented 7 years ago

@adifabio please use Take and Skip for now. Limit will be added later

db.Query<Collection>()
                    .Skip(6)
                    .Take(5)
                    .Select(x=>x)
adifabio commented 7 years ago

Thank you for the quick reply!

On Sep 14, 2017, at 2:09 AM, raoof hojat notifications@github.com wrote:

@adifabio https://github.com/adifabio please use Take and Skip for now. Limit will be added later

db.Query() .Skip(6) .Take(5) .Select(x=>x)

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/ra0o0f/arangoclient.net/issues/89#issuecomment-329383341, or mute the thread https://github.com/notifications/unsubscribe-auth/ADnOP5c4a5g5jBeg8pStZGT3M_Utp50Nks5siMMugaJpZM4PW544 .