Doing full class name query with Objectify
to get an Entity, is it possible? Like when I want to query for class com.mypackage.MyClass
get the Entity and do further query on its fields.
EDIT:
For example:
daot.ofy().query(Class.forName("com.mypackage.MyClass"));
Will this work?