I just recognized that it works with Categories and Category, but it doesn't work with Instructors and Instructor, even if they have exactly the same properties.
When I change Instructor to Instructory and Instructors to Instructories it works.
Can it be that there is a bug in the way how betwixt determines singular/plural?
Sebastian
I just recognized that changing
beanReader.registerBeanClass(Instructor.class); beanReader.registerBeanClass(Instructors.class);
to
beanReader.registerBeanClass(Instructors.class); beanReader.registerBeanClass(Instructor.class);
gets betwixt working as expected. So currently the order in which the beans are registered seems to be important.
Sebastian
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
