home *** CD-ROM | disk | FTP | other *** search
- {
- attributes = (
- {
- columnName = MOVIE_ID;
- externalType = NUMBER;
- name = movieID;
- precision = 9;
- valueClassName = NSNumber;
- valueType = i;
- },
- {
- allowsNull = Y;
- columnName = ROLE_NAME;
- externalType = VARCHAR2;
- name = roleName;
- valueClassName = NSString;
- width = 30;
- },
- {
- columnName = TALENT_ID;
- externalType = NUMBER;
- name = talentID;
- precision = 9;
- valueClassName = NSNumber;
- valueType = i;
- }
- );
- attributesUsedForLocking = (talentID, movieID, roleName);
- className = EOGenericRecord;
- classProperties = (roleName, movie, talent);
- externalName = MOVIE_ROLE;
- maxNumberOfInstancesToBatchFetch = 10;
- name = MovieRole;
- primaryKeyAttributes = (talentID, movieID);
- relationships = (
- {
- destination = Movie;
- isToMany = N;
- joinSemantic = EOInnerJoin;
- joins = ({destinationAttribute = movieID; sourceAttribute = movieID; });
- name = movie;
- },
- {
- destination = Talent;
- isToMany = N;
- joinSemantic = EOInnerJoin;
- joins = ({destinationAttribute = talentID; sourceAttribute = talentID; });
- name = talent;
- }
- );
- }
-