Let us say that I want to use Coldfusion's Hibernate ORM. But I don't want to write the CFC's for each object, I have a configuration file which details my schema.
I want to parse that configuration file and generate the ORM dynamically.
Or, what if I had some CFC's
- Blogs.cfc
- Tags.cfc
But the relationships are of a more "dynamic" nature. Is there any way to programmatically add my own property to relate Blogs and Tags?
These examples are simplistic to what I am trying to accomplish, but they are necessary first steps, and there doesn't seem to be anyone else asking these questions out there.