Select All Rows Using Entity Framework

asp.net, entity-framework

Solution

I used the entitydatasource and it provide everything I needed for what I wanted to do.

`_repository.[tablename].ToList();`

Problem

I'm trying to select all the rows out of a database using entity framework for manipulation before they're sent to the form ``` var ptx = [modelname].[tablename](); ptx.[tablename].Select(????) ``` what goes in the ????

Original source