querydsl

    0熱度

    1回答

    我正在尋找關於querydsl where條款中的條件的用例。 SELECT column1,column2 FROM viewWhatever WHERE CASE WHEN column1 =='b'THEN account_location =? WHEN column1 =='m'THEN location_area =? 我剛剛開始使用querydsl我無法弄清楚如何在querydsl案

    0熱度

    1回答

    如何在QueryDsl中實現Left或right outer join。一個簡單的例子很有幫助。

    1熱度

    1回答

    我們在我們的應用程序中使用querydsl和JPA。下面是如何我的倉庫實現: public interface TestRepository extends JpaRepository<Test, Long>, QueryDslPredicateExecutor<Test> { } 我使用謂詞建設者和分頁的對象調用默認的findAll方法: testRepository.findAll(boo

    0熱度

    2回答

    這是我的搜索過濾器查詢條件, 我想給「和」條件的條件。 現在,我已經給了必須過濾條件 'query' => [ "filtered" => [ "query" => [ "match_all" => [] ], "filter" => [ "bool" => [ "must" => [ "t

    1熱度

    1回答

    Class對象,我有它返回的實體的Class對象我想要查詢的方法: protected abstract Class<T> getEntityClass(); ,後來我想查詢這個實體QueryDSL new JPAQuery<>(em).from(?????); 我該如何做到這一點?

    1熱度

    1回答

    這有什麼不妥以下QueryDSL代碼: query.from(chat).where( chat.datePosted.goe(startDate.atStartOfDay()). and(chat.datePosted.lt(endDate.plusDays(1).atStartOfDay()))). groupBy(date(chat.datePosted)). list(date(c

    0熱度

    1回答

    不手電筒支持DSL查詢,像這樣: { "query":{ "bool":{ "must":[ { "match":{ "visibleName":"skye" } } ] } } } ? 當我把它放到查詢字段search/request/key/q

    1熱度

    1回答

    假設我有一個Appointment表和Person表,其中Appointment有許多Person s。 如果我想找到包含至少一個人在我的列表中的所有約會,我會做: Collection<Person> personsList = getInterestedPersons(); BooleanExpresssion expr = appointment.persons.any().in(pers

    0熱度

    1回答

    我試圖將Morphia的QueryDSL集成到我的項目中,但它看起來像QueryDSL忽略轉換器。 僅嗎啡查詢工作: return query(user).where(user.email.eq(email)).fetchOne(); org.bson.codecs.configuration.CodecConfigurationException:因爲它沒有使用轉換器 return crea

    0熱度

    1回答

    我的文檔是 @QueryEntity @Data @Document(collection = "MyCol") public class MyCol { @Id private String _id; private String version; 我想存儲在數據庫中的所有不同版本。 我嘗試: public interface MyColDao extends Mong