vote up 0 vote down star

Using LINQ, how can I get the column names of a table? C# 3.0, 3.5 framework

flag

67% accept rate
Retagged to linq-to-sql, please edit your question if you meant some other kind of "LINQ". – Alex Bagnolini Nov 26 at 12:09
Unfortunately this query run inside LINQPad so how do I get the context in LINQPad? – Lennie De Villiers Dec 19 at 19:37

4 Answers

vote up 2 vote down check

I assume you mean by using LINQ to SQL, in which case look at the DataContext.Mapping property. That's what I use.

If you don't mean that, perhaps you can elaborate on what you are trying to achieve?

link|flag
I want to write a program using LINQPad (C#) That can build SQL insert statements off course for this I require the column names of the tables. – Lennie De Villiers Nov 26 at 12:01
vote up 0 vote down

Iterate the properties of your L2S classes with reflection

link|flag
vote up 0 vote down

Use the ExecuteQuery method on your data context and execute this SQL script:

var columnNames = ctx.ExecuteQuery<string>
    ("SELECT name FROM sys.columns WHERE object_id = OBJECT_ID('your table name');");

This gives you an IEnumerable<string> with all the column names in that table you specified.

Of course, if you want and need to, you could always retrieve more information (e.g. data type, max length) from the sys.columns catalog view in SQL Server.

link|flag
vote up 0 vote down

If you are talking about getting the columns for a mapped table then see this answer to see how to get to the column attributes. From there you can get the column names, types, etc.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.