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]()
You can use this code to select all rows :
C# :
var allStudents = [modelname].[tablename].Select(x => x).ToList();