From: Nick <ni...@dd...> - 2003-04-30 20:04:22
|
Question: How do you create a class that accesses a table with no key? For example, a Person table references a PhoneNumber where the only 2 columns are person_id and phone_number (not a reference to another table but a phone number)? Currently, you can fudge the values of a RelatedJoin for the correct query to be generated, e.g. otherClass=intermediateTable and joinColumn=otherColumn, but are the returned values correct? Will operations work correctly? Nick |