In my web application i want to show a table data in Data Grid for that i am using Entity Framework 4.0 while executing i am getting exception that out of memory.
Is there any limitation in ASP.NET Data Grid. I am using Oracle DataBase.
Below is my code
Entities obj = new Entities();
GridView1.DataSource = obj.EQUIPMENTs.ToList();
//Here i am getting exception
GridView1.DataBind();
.ToList()?