When will cuba have strong type query Like .net LINQ

Hi,
This is 2019, and if you look at 99% of all .net ORMs, they all use strong type query. I know cuba is leaning on eclipselink, but I assume that there are solutions. (jooq, querydsl)

var customer = db.Query<Customer>(x => x.Name.StartsWith== "A" && x.Date != null || x.Pasword.Length >0).Single();

Isn’t that much better than any other string solution? refactory works perfect and “find usages” even better…

Is it part of cuba future?

Thanks

1 Like

Hi, there is (GitHub - ikuchmin/querydsl-cuba: Provides QueryDSL integration for CUBA applications) an AppComponent which adds QueryDSL support to your CUBA.platform application

1 Like