home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / EODEV.Z / Director.plist < prev    next >
Encoding:
Text File  |  1996-07-11  |  1.2 KB  |  43 lines

  1. {
  2.     attributes = (
  3.         {
  4.             columnName = MOVIE_ID; 
  5.             externalType = NUMBER; 
  6.             name = movieID; 
  7.             precision = 9; 
  8.             valueClassName = NSNumber; 
  9.             valueType = i; 
  10.         }, 
  11.         {
  12.             columnName = TALENT_ID; 
  13.             externalType = NUMBER; 
  14.             name = talentID; 
  15.             precision = 9; 
  16.             valueClassName = NSNumber; 
  17.             valueType = i; 
  18.         }
  19.     ); 
  20.     attributesUsedForLocking = (movieID, talentID); 
  21.     className = EOGenericRecord; 
  22.     externalName = DIRECTOR; 
  23.     maxNumberOfInstancesToBatchFetch = 10; 
  24.     name = Director; 
  25.     primaryKeyAttributes = (movieID, talentID); 
  26.     relationships = (
  27.         {
  28.             destination = Movie; 
  29.             isToMany = N; 
  30.             joinSemantic = EOInnerJoin; 
  31.             joins = ({destinationAttribute = movieID; sourceAttribute = movieID; }); 
  32.             name = toMovie; 
  33.         }, 
  34.         {
  35.             destination = Talent; 
  36.             isToMany = N; 
  37.             joinSemantic = EOInnerJoin; 
  38.             joins = ({destinationAttribute = talentID; sourceAttribute = talentID; }); 
  39.             name = toTalent; 
  40.         }
  41.     ); 
  42. }
  43.