You are not logged in.
Pages: 1
I have this TOrm and DTO:
TMPOrm = class(TOrm)
private
FDataCriacao: TDateTime;
FUltimaAlteracao: TDateTime;
FEmpresaID: TID;
published
property DataCriacao: TDateTime read FDataCriacao write FDataCriacao;
property UltimaAlteracao: TDateTime read FUltimaAlteracao write FUltimaAlteracao;
property EmpresaID: TID read FEmpresaID write FEmpresaID;
end;
TPosto = class(TMPOrm)
private
FNome: RawUtf8;
FIdExterno: Int64;
published
property Nome: RawUTF8 index 100 read FNome write FNome;
property IdExterno: Int64 read FIdExterno write FIdExterno;
end;
TDTOPosto = packed record
Nome: RawUtf8;
ID: Int64;
IDExterno: Int64;
end;
when using CreatingMissingTables all fields names are translated to loweercase.
when retrieve information of database i get this json:
{
"ID": 1,
"datacriacao": "2024-10-09T16:19:11",
"ultimaalteracao": "2025-01-14T10:02:45",
"empresaid": 1,
"nome": "Posto G",
"idexterno": 32
}
How json property follow the same name case of DTO or ORM?
Offline
Database: Postgress
Ok, on database, mormot create all fields in lowercase, how change this to create conform the ORM class?
property DataCriacao. i dont want on database like "datacriacao"
I would Like Json com property "DataCriacao".
If I make retrieve with collumns defined, json is generated "DataCriacao", but if i want retrieve all columns, mormot retrieve "datacriacao"
This are generating problems on frontend plataform because to it DataCriacao <> datacriacao
Offline
Pages: 1