我想创建一个没有模型实现的通用存储库。 有可能吗?
Collections.frequency
在控制器中我想从dataset / jsonresult获取数据。 我尝试了许多建议,但没有人工作。 这是因为我不使用模特?
private int getCount(String empName){
int count = 0;
for (Employee employee : empList) {
if(employee.getEmpName() != null && employee.getEmpName().equals(empName)){
count++;
}
}
return count;
}