From 24d8290a3f5c9e21ad585d75ee142cb8c3582e57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=9C=E4=BA=9A=E5=93=B2?= Date: Mon, 16 Jan 2017 10:32:33 +0800 Subject: [PATCH] fix filter with __ne bug --- orm/db.go | 1 + 1 file changed, 1 insertion(+) diff --git a/orm/db.go b/orm/db.go index 30d8ae4e..bca6071d 100644 --- a/orm/db.go +++ b/orm/db.go @@ -48,6 +48,7 @@ var ( "lte": true, "eq": true, "nq": true, + "ne": true, "startswith": true, "endswith": true, "istartswith": true,