I'm running testing scenarios to decide whether or not to implement a system using the Entity Framework and come across an interesting question. I have a collection of 'PersonCollectable' objects stored in 'Person' and each 'PersonCollectable' references to a 'Page'; retrieving the collection provides me all the 'PersonCollectable' objects I want to display but I want to display the name of 'Page' as well. Will this result in a query for each Page and thus negatively impact performance?
public class Person
{
public virtual ICollection<PersonCollectable> Collection { get; set; }
public int Id { get; set; }
public string Name { get; set; }
}
public class PersonCollectable
{
public int Id { get; set; }
public virtual Page Page { get; set; }
public int PageId { get; set; }
}
public class Page
{
public int Id { get; set; }
public string Name { get; set; }
}
And this is the test code to retrieve the information and display the results. Imagine that the collection is filled with at least 500 items, so this might result in 500 additional queries per web request. A development machine can handle this, but I'd like to be aware if this will destroy a published product.
Person example = db.People.Single( s => s.Name == "Roel" );
foreach( PersonCollectable exampleCollectable in example.Collection ) {
Console.WriteLine( "{0} rated {1}", exampleCollectable.Page.Name, exampleCollectable.Rating );
}
Please share your insight and help me answer this question, will this result in a query for each Page and thus negatively impact performance? Thank you.