Using LINQ, how can I get the column names of a table? C# 3.0, 3.5 framework
|
|
|
|
|
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? |
|||
|
|
|
Iterate the properties of your L2S classes with reflection |
||
|
|
|
|
Use the ExecuteQuery method on your data context and execute this SQL script:
This gives you an Of course, if you want and need to, you could always retrieve more information (e.g. data type, max length) from the |
|||
|
|
|
|
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. |
||
|
|

linq-to-sql, please edit your question if you meant some other kind of "LINQ". – Alex Bagnolini Nov 26 at 12:09