-
-
Notifications
You must be signed in to change notification settings - Fork 364
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
QueryBuilder can take abstract class #209
Comments
Agreed that it would be nice, but I cant see obvious way of effective implementation of this query (without running table full scans)... |
In Java , there is no easy way to find all subclasses af a given class using Reflection API |
Maybe helpful: https://github.com/ronmamo/reflections |
Yeah , there are some libs for that but I really want to keep JaVers lightweight. |
BTW, how can I get all changes of all entities, ideally with Paging support? |
for now you cant, but it can be easily implemented, also we have a task about paging #179, ideal for contribution |
let me know if you would like to contribute these two things |
I think extending
to
could help so I can submit a list of classes and do reflections on my side? |
looks like a good idea |
See #246 |
ok, but there is no implementation and no tests in this PR ... |
I've seen this method, but this is only a query. |
…-classes #209 quering for changes in multiple classes
fixed in release 2.6.0 |
Currently only non-abstract classes work for the following resolution of changes:
byClass
with an abstract class nothing is returned. It would be nice if all subclasses are queried and changes on all of them are returned.The text was updated successfully, but these errors were encountered: