Ask questions and see you at September 4th, 8 pm CET: youtube.com/c/bienadam
Also checkout recent episode:
Please keep the questions as short and as concise as only possible. Feel free to ask several, shorter questions. I will also cover some questions in my "shorts" youtube.com/@bienadam/shorts between the shows.
Upcoming airhacks.tv events are also going to be announced at meetup.com/airhacks
New: the airhacks.tv discord server: discord.gg/airhacks
I have another question regarding jpaStreamer, I don't know if you've used it already but I have question the question on their channel but got now answer yet.
I use jpaStreamer with Quarks and I have a question regarding the query that I would like to build.
I have an entity Member which has another entity as property, say MemberContact which has two String msisdn and emailAddress
I would like to use the repository using Member, like "MemberRepository implements PanacheRepository"
and in my search code, I would like to access the msisdn, how do I do it as I can't do "stream.filter(Member$.msisdn.containsIgnoreCase(request.msisdn));" and I can do
"stream.filter(Member$.memberContact.msisdn.containsIgnoreCase(request.msisdn));" because memberContact when generated is of type com.speedment.jpastreamer.field.ReferenceField<Member, MemberContact>"
Regards,
D.