I am using entity framework and I can’t find include method like in this example:
using(ArticleExtractorEntities db=new ArticleExtractorEntities())
{
Preference pref= db.Preferences.Include(
here i find only the function include with the parameter (string path) and I don’t find any other overload so how can I use Include with lambda expression?
it’s not in System.Linq.
Add