Hi
When i add && t.studentid equals t2.studentid then i get above error
public List<View_SessionDeliveryCalendarDetails_Student> GetOrderingInput()
{
List<View_SessionDeliveryCalendarDetails_Student> Result = (from t in context.View_SessionDeliveryCalendarDetails_Students
join t2 in context.View_BookDeliveryDetails
on t.BookID equals t2.BookID && t2.StudentID equals t2.studentid
where t.CurrentStatus == "Due"
orderby t.Name
select t).ToList();
return Result;
}
Thanks