Using LINQ, how can I get the column names of a table? C# 3.0, 3.5 framework
var query = from x in DataBase.Table_Name select x.Column_Name;