Using LINQ, how can I get the column names of a table? C# 3.0, 3.5 framework
The below code will worked from returns all the column names of the table
var columnnames = from t in typeof(table_name).GetProperties() select t.Name