Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using RavenDB build 701 and in GetDatabaseNames(int pageSize) function I need to get 5 database at a time. It is very easy to get number of databases but if I want next 5 databases and so on then I couldn't find any pagination scheme with this function. please tell me the right way to do this. Thank you so much.

share|improve this question

1 Answer

Rajdeep, This is currently not supported in the API. You can do a direct http request to http://raven-server/databases/?pageSize=5&start=5

(give me 5 - 10 databases)

share|improve this answer
Thank you for the way.How can I use direct http request in c# code. Please tell me – Rajdeep Paliwal May 7 '12 at 6:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.