Is it possible to have a like in a where clause in a named query? I am trying to do the following but am getting exceptions
@NamedQuery(name = \"Place.getPla
@Query("select c from Curso c where c.descripcion like CONCAT(:descripcion,'%')") List findByDescripcionIgnoreCase(@Param("descripcion") String descripcion);