coldfusion « Association « JPA Q&A





1. How do I remove an association in ColdFusion ORM?    stackoverflow.com

Let's say I have two entities, a House:

component
{
    property name="Owner" cfc="Owner" fieldtype="many-to-one";
}
And an Owner:
component
{
    property name="Name";
}
A House may have an Owner, but doesn't need to. ...