Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ViewDef akzeptiert Attribut nicht, wenn es den gleichen Namen wie die Klasse hat #135

Open
olivergrimm opened this issue Oct 31, 2024 · 2 comments

Comments

@olivergrimm
Copy link

olivergrimm commented Oct 31, 2024

Eine View-Definition auf die Klasse Dokument des Modells Nutzungsplanung_V1_2 (https://models.geo.admin.ch/ARE/Nutzungsplanung_V1_2.ili) wird (fälschlicherweise?) als ungültig evaluiert, wenn diese das gleich heissende Attribut 'Dokument' enthalten soll:

  VIEW v_Dokument
      PROJECTION OF Nutzungsplanung_V1_2.Rechtsvorschriften.Dokument;
    =
      Typ : Nutzungsplanung_V1_2.DokumentTyp;
      TextImWeb : Nutzungsplanung_V1_2.MultilingualUri;
      Dokument : Nutzungsplanung_V1_2.MultilingualBlob;
      AuszugIndex : -1000 .. 1000;
      Rechtsstatus : Nutzungsplanung_V1_2.RechtsStatus;
      publiziertAb : INTERLIS.XMLDate;
      publiziertBis : INTERLIS.XMLDate;

 END v_Dokument;

Compiler-Output:
VIEW SH_Nutzungsplanung_V5_0_AddChecks.SH_Nutzungsplanung_V5_0_Validierung.v_Dokument can not declare several attributes bearing the same name. There is already an attribute "Dokument".

  • Eine ViewAttributes-Definition mit ALL OF führt zum gleichen Fehler
  • Wenn ich im Basismodell das Attribut Dokument umbenenne, dann wird der View valid evaluiert.

Kann es sein, dass die View-Interpretation kein Attribut akzeptiert, welches gleich heisst wie die Klasse?

@edigonzales
Copy link

@olivergrimm Ich glaube du musst einen "Aliasnamen" einführen:

  VIEW v_Dokument
      PROJECTION OF Dok ~ Nutzungsplanung_V1_2.Rechtsvorschriften.Dokument;
    =
      ALL OF Dok;
 END v_Dokument;

@olivergrimm
Copy link
Author

@edigonzales Danke!
Info: ...compiler run done 2024-11-01 10:42:39

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants