Is it possible to define a relationship in Core data based on more than one column?
For instance I have an Entity called Error with attributes: Name and Id. I have two other entities X and Y. Both X and Y have a one to many relationship with Error. Errors related to X have Name 'X' and Id equal to a primary key in X. Errors related to Y have Name 'Y' and Id equal to a primary key in Y.
Is it possible to define relationships of this nature in core data?