现在Nutz中是否支持in的链表查询,比如:select * from urls where id not in(select parentId from html);在nutz中该怎么实现查询功能。
只能走自定义查询吧~~
@qq_6c45841c 这种关联不是很麻烦,要是支持对象的就好了
类似这样
Cnd.NEW().andNot(Exps.inSql("id", "select parentId from html"));
@wendal 谢谢