Is there a way to obtain the column names of a particular table using entity? What I mean is that I can obtain it via SQL with
CODE
SELECT Column_Name FROM Information_Schema.Columns WHERE TABLE_Name = 'TableName'
I attempted to obtain the information via Reflection but it returns the column names, as well as the association names.
What I am doing is populating a combo box with the field names.
Provide C# code.Thank you.
REgards,
Prathap.