Hi
In below query i have 2 tables joined. In aspx page i want to display data from these 2 tables in a repeater.
Is it possible
public List
{
List
join t2 in context.View_SessionDetails
on t.SessionPlanID equals t2.SessionPlanID
where t.SessionDate.Value.Date >= frDate.Date && t.SessionDate.Value.Date <= toDate.Date
orderby t.SessionDate
select t).ToList();
return Result;
}
Thanks
Ramco RamcoPosted Jul 5, 2022, 8:43 AM
Sachin SinghPosted Jul 5, 2022, 6:25 AM
Ramco RamcoPosted Jul 5, 2022, 6:05 AM
Sachin SinghPosted Jul 5, 2022, 5:26 AM