Hi Miguel,
If your associations and navigation properties are configured correctly, you just need to use the
Include clause in your LINQ query, something like:
var records = dbContext.Posts.Include("Tags"); //assuming that your entity name is 'Posts' and the navigation property is 'Tags'
//consume records (or apply more filters )
Hope that helps,
Regards,
Syed Mehroz Alam
My Blog |
My Articles