问题描述 link 中一个按钮的代码如何连续执行另一个按钮的事件5次? link 中一个按钮的代码如何连续执行另一个按钮的事件5次? 解决方案 https://msdn.microsoft.com/zh-cn/library/system.windows.forms.button.performclick.aspx 解决方案二: 在button1_Click里面写 for (int i = 0; i < 5; i++) button2.PerformClick();
问题描述 关于Hql语句,这条语句为什么查不出数据 hql = "from A a where a.timeDate <= "+time+" and a.name not in (select b.name from B b)"; super.findTopByHql(hql, 20); 这条语句有没有问题啊,为什么查不到数据 解决方案 检查下日期有没有引号,是否合法 最好是使用参数 hql = "from A a where a.timeDate