I would like to know if the information I found after searching, which briefly is in the link below, proceeds:
Question:
In a hypothetical situation, if we have the Car class and the Tag class, where Car has a tag > and Tag can have several Cars (One-to-Many), EntityFramework forces me to create a ' in> Car , or otherwise I would have to load the entire Tag at the time of an inclusion / change of a Car if I do not want to use a TagId field?
Reason for question:
Even in the links where I found this information, they point out that this practice hurts OO good practices. Is there a better solution for these cases?