teacat / reiner

👷 MySQL wrapper which might be better than the ORMs and written in Golang

Home Page:https://godoc.org/github.com/teacat/reiner

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

OrderBy 生成语句错误

xiake999 opened this issue · comments

Table("User").OrderBy("id", "desc").Limit(0, 12).Get()

生成的sql语句:

SELECT * FROM User ORDER BY id descLIMIT 0, 12