Avoiding Circular referencing providing too much data
问题 I followed all the procedures to avoid circular referencing in my Wines/Vineyard project. But I am getting data I do not want: I do not want every listing of wine which has an affiliated vineyard to then have that vineyard list EVERY wine every time the vineyard is listed per wine. How can I stop this? I do not want to do anonymous types. UPDATE: My DbContext: public DataContext() { Configuration.LazyLoadingEnabled = false; Configuration.ProxyCreationEnabled = false; } My Route Config: config