Eager Loading more than 1 table in LinqtoSql
Posted
by Michael Freidgeim
on Geeks with Blogs
See other posts from Geeks with Blogs
or by Michael Freidgeim
Published on Sun, 09 Dec 2012 14:45:45 GMT
Indexed on
2012/12/09
5:05 UTC
Read the original article
Hit count: 449
Filed under:
When I've tried in Linq2Sql to load table with 2 child tables, I've noticed, that multiple SQLs are generated. I've found that it is
a known issue, if you try to specify more than one to pre-load it just picks which one to pre-load and which others to leave deferred (simply ignoring those LoadWith hints)
There are more explanations in
The alternative -to use SQL and POCO classes-see http://stackoverflow.com/questions/238504/linq-to-sql-loading-child-entities-without-using-dataloadoptions?rq=1 |
Fortunately the problem is not applicable to Entity Framework, that we want to use in future development instead of Linq2Sql
Product firstProduct = db.Product.Include("OrderDetail").Include("Supplier").First();
?
© Geeks with Blogs or respective owner