Einzelnen Beitrag anzeigen

Benutzerbild von Uwe Raabe
Uwe Raabe
Online

Registriert seit: 20. Jan 2006
Ort: Lübbecke
11.462 Beiträge
 
Delphi 12 Athens
 
#7

AW: Einzelne Objectvariable aus ObjectToJSON ausschließen

  Alt 11. Jul 2023, 10:47
OK, habe ich erst übersehen:
Delphi-Quellcode:
type
  TDoorList = TObjectList<TTBADoor>;
  TDoorListInterceptor = TObjectListInterceptor<TTBADoor>;
Das muss heißen:
Delphi-Quellcode:
type
  TDoorList = class(TObjectList<TTBADoor>);
  TDoorListInterceptor = class(TObjectListInterceptor<TTBADoor>);
Im GitHub Repo steht das auch im ReadMe:
Zitat:
The new attribute (JsonObjectListContactAttribute) as well as the new list (TContactList) must not be an alias - the class keyword is mandatory.
Uwe Raabe
Certified Delphi Master Developer
Embarcadero MVP
Blog: The Art of Delphi Programming
  Mit Zitat antworten Zitat