I've got a question regarding self references in the entity framework, just to determine the load of the app.
Unfortunately I have some relationships in my tables. Due of this, I have some self referencing objects. For example: A company has some customer, a customer belongs to some entries, these entries are mapped to an company which contains the different customers...
(Company -> Customer -> Entry -> Company -> Customer ....)
When I want to serialize this in a json string, I will get the error message regarding self referencing loops (it's clear) By making this query with the entity framework, I don't get an error message. But when I take a look in the debugger, I can see the "loop".
My questions: Does it cause a high performance load on my server? Or is this different handled, so I can ignore this self references in c#?
Otherwise I think I have to make changes regarding the relationships in the tables...
I just want to prevent problems about the server load when I've more entries in the tables.
Thanks in advance.