nhibernate QuerySyntaxException: is not mapped code example
Example 1: ast querysyntaxexception is not mapped
Query query = entityManager. createQuery("Select UserName from **UserDetails** ");
Example 2: ast querysyntaxexception is not mapped
List<User> result = session.createQuery("from User", User.class).getResultList();