List<Employee> objEmpList = new List<Employee>();
for (int i = 0; i < 5; i++)
{
objEmpList.Add(new Employee(){ID=i, Name="aa" + i});
}
I want to create table with generic list items as rows using linq or lambda expressions...How to do that..??I did that using loops but I want do that using linq..!