I would like to preload my catalog in my web application. I'm using EF4 and would like to prefetch all my catalog data. Is there a simple way to do it with EF4 ?
DB structure : Catalog -> Category -> [Category ->] product -> options
How can I preload all objects on application start ?
Thanks