I have one list that contains Student informations
lsStudents = context.GetTable<Student>().Where(p => p.M_Id.Equals(1)).ToList();
And I have another one that contains Student Lessons
lsMarks = context.GetTable<Mark>().Where(p => p.M_StudentId.Equals(1)).ToList();
I want to merge these lists to one ObjectDataSource to bind to a repeater.
<asp:Repeater ID="rpt" runat="server">
<ItemTemplate>
<div><% Databinder.Eval(Container.DataItem,"M_StudenName") %></div>
<div><% Databinder.Eval(Container.DataItem,"M_Mark") %></div>
</ItemTemplate>
</asp:Repeater>