I have a question regarding location of repository access. Is it acceptable practice to allow or contain Repository access within an Entity that the Repository Maintains?
For example:
class Product
{
public int ProductID {get;set;}
public int Name {get;set;}
public IList<Product> Products {get;set;} // A Product may be a bulk item that contains several individual items.
public int VendorID {get;set;} // Key to another table that list vendor info.
}
public class ProductRepository : IRepository
{
public Product GetProduct(int id) {}
public IList<Product> GetProducts() {}
}
A Few Questions:
- Where should retrieval of information from other tables be located? Repository, Services, Entity etc.. Would this also apply to the Contained Products for bulk Items?
- When should this occur, At the time the product is retrieved, or if/when the Vendor/SubProduct accessed?