So far after watching the tutorial videos on link, im fine accessing one data table and dealing with the results. On putting this into practice at the office I am faced with a lot of joins that I need to convert to LINQ...
SELECT Modules.TemplateFileName FROM Modules INNER JOIN Grouping ON Modules.ID = Grouping.ModuleID WHERE (Grouping.ID = @id)
(@id comes from querystring)
Could anyone please show me an example of the syntax needed to make it work?
Thanks and regards.