Hi
I create simple query like below
select r from xxx$StorageXXXX r where r.article.id = 201 and r.batch_code = '19906' and r.store.id = 1
and I give exception
The state field path 'r.batch_code' cannot be resolved to a valid type.
Column batch_code is string type.
@Column(name = "BATCH_CODE", length = 50)
protected String batchCode;
What is wrong in this query notation ?