dao有没有方法是查询某个字段的 方法
比如 select username from tablename where columnname='xxx'
2 回复
@wendal
ok了
Daos.ext(dao(), FieldFilter.create(getEntityClass(), "^title$")).query(getEntityClass(),
Cnd.where("ownerid", "=", ownerid));
不过
For example:> "SELECT title FROM house WHERE ownerid='d1923db704ca48d0be0e329ff0656ea0'"
2016-02-23 15:02:20,873 [http-apr-8080-exec-8] DEBUG com.qujule.mvc.LogTimeProcessor - [ GET]URI=/qijule/housemodule/owner/housename 51ms
执行的时间有点长哦,,
还不如直接 dao.query 然后全部信息返回给前端,,让前端 按需 选择 来的快
添加回复
请先登陆