intermezo
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 listsi 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