لطفا به کد زیر توجه کنید:
@Override
public void deleteById(int theId) {
// get the current Hibernate session
Session session = entityManager.unwrap(Session.class);
// delete object with primary key
Query theQuery = session.createQuery("delete from Employee where id=:employeeId");
theQuery.setParameter("employeeId", theId);
theQuery.executeUpdate();
}
در قسمتی که کوئری نوشتم، برای Employee و id این اخطار رو نشون میده (can't resolve symbol Employee'). خطا نیست و برنامه اجرا میشه. اما میخوام بدونم برای چی چنین اخطاری داده میشه. سپاسگزارم اگر راهنمایی کنید.