From 255df6091ab54534575c6d683386e97fbc05f918 Mon Sep 17 00:00:00 2001 From: Itai Shirav Date: Mon, 4 Jul 2016 11:42:30 +0300 Subject: [PATCH] added README note --- README.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.rst b/README.rst index 13a5519..7070323 100644 --- a/README.rst +++ b/README.rst @@ -139,6 +139,9 @@ You can optionally pass conditions to the query:: >>> page = db.paginate(Person, order_by, page_num=1, page_size=100, conditions='height > 1.90') +Note that ``order_by`` must be chosen so that the ordering is unique, otherwise there might be +inconsistencies in the pagination (such as an instance that appears on two different pages). + Field Types -----------