In hibernate I can do following
Query q = session.createQuery("from Employee as e);
List<Employee> emps = q.list();
Now if I want to fetch int and String how can I do it?
Query q = session.createQuery(""SELECT E.firstName,E.ID FROM Employee E";
List ans = q.list();
Now what will be the structure of list?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…