The existing equals() method on BaseObject only compares primary keys.
This doesn't work with Betwixt (see previous XML patch) because it is
comparing objects of different type, which may both have the same
primary key (e.g. an integer id of 1). Adding the following method to
Object.vm should fix the problem:
public boolean equals(Object o) {
return (o instanceof $basePrefix$table.JavaName) &&
super.equals(o);
}
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>