intermezo
intermezo
CC#
Created by CurlyRed(Serzhio) on 11/24/2023 in #help
UML class diagram. Class relationships.
sure... i was just giving an example to point your solution seems good
8 replies
CC#
Created by CurlyRed(Serzhio) on 11/24/2023 in #help
UML class diagram. Class relationships.
entity framework, a tool to transform SQL tables into C# classes
8 replies
CC#
Created by CurlyRed(Serzhio) on 11/24/2023 in #help
UML class diagram. Class relationships.
log in Manager or Client with null lists and then load ALL Inquiries/Offers and loop through them to find matching ID of currently logged in Manager/Client and store them in a Manager/Client lists
i think EF does this under the hood for instance, the Manager.Inquiries getter is a lazy (loaded when needed) list of Inquiries where the ManagerId is equal Manager.Id if you were using conventional SQL, the normal approach would be to query for the manager, then query for the manager inquiries so, it seems okay to me
8 replies