Posts by Cristian Augusto • 43 points
2 posts
-
0
votes0
answers26
viewsQ: Update error in relation @Manytoone with Typeorm
Good afternoon, in my application I have the relation that an Order can have several Deliveryrequests. But when I do a save(order) it is updated correctly but an SQL settando is generated as NULL…
-
4
votes1
answer115
viewsQ: How to type keys (Keys) of objects nested in Typescript?
I need that guy ColumnDefinitionType accept the object keys IUser, as well as accept the keys of objects nested to the IUser. export interface IUser { userId: number; username: string; name: string;…