Hi
On below code i am getting above error
public List
{
List
join t2 in context.View_BookDeliveryDetails
on new { p1 = (int)t.BookID, p2 = (int)t.StudentID} equals new { p1 = (int)t2.BookID, p2 = (int)t2.StudentID }
where t.CurrentStatus == "Due"
orderby t.Name
select new {t.Name,t2.AURL }).ToList();
return Result;
}
Ramco RamcoPosted Jul 5, 2022, 12:00 PM
Sachin SinghPosted Jul 5, 2022, 11:45 AM
Guest UserPosted Jul 5, 2022, 11:43 AM