Test that any kind of attribute can be written and read, both directly and through an external field

This commit is contained in:
Romain Quetiez
2024-05-17 14:45:46 +02:00
parent fd6796aae3
commit 48857631a4
4 changed files with 810 additions and 1 deletions

View File

@@ -385,7 +385,7 @@ class ormSet
*/
public function Equals(ormSet $other)
{
return implode(', ', $this->GetValue()) === implode(', ', $other->GetValue());
return implode(', ', $this->GetValues()) === implode(', ', $other->GetValues());
}
/**