eclipslinkでjpa2を使用しています...
私はこのクエリを実行しようとしています:
List postEntityList = entityManager.createQuery( "select p from PostEntity p where p.organizationEntity =?1 and p.organizationUnitEntity =?2 and p.organizationLocationEntity =?3 and p.organizationBatchEntity =?4 and p.postCategoryEntity =?5 and p .dateOfPosting? ).setParameter(6、minimumTime).setParameter(7、maximumTime).getResultList();
しかし、私はエラーを受け取っています:
タイプクラスentity.PostCategoryEntityの値をパラメータ5に設定しようとしましたが、期待されるタイプのクラスentity.OrganizationEntity from query string select p from PostEntity p where p.organizationEntity =?1 and p.organizationUnitEntity =?2 and p.organizationLocationEntity =?3およびp.organizationBatchEntity =?4およびp.postCategoryEntity =?5およびp.dateOfPostingは、p.rating descによる?6と?7の順序です。
なんでそうなの!何か案が...??