I have a Link 2 Entity query expression in my ASP.NET MVC app:
Dim var = From c In context.Evaluation_Template _ From ae In context.Assigned_Evaluation _ Join ua In context.User_Assignment On ae.Assignment_ID Equals ua.Assignment_ID _ Select c.Evaluation_Name, ae.Due_Date, ua.Is_Started, ua.Is_Completed, ua.Is_Approved
I want to pass this to the view and display the results.
I have tried
Return View(var)
But I'm not sure how to iterate through the results.
I'm new to .NET in general so any help would be greatly appreciated.