How do you select all rows when doing linq to sql?
Select * From TableA
In both query syntax and method syntax please.
You can use simple linq query as follow to select all records from sql table
var qry = ent.tableName.Select(x => x).ToList();