vote up 1 vote down star

I have a DataContext (Linq to Sql) with over 100 tables, is it possible to get a list of all those tables and lets say print them to the console? This might be a silly question.

Thanks.

flag

2 Answers

vote up 4 vote down check

It's much easier than above and no reflection required. Linq to SQL has a Mapping property that you can use to get an enumeration of all the tables.

context.Mapping.GetTables();
link|flag
Nice, I did not know about that. – Rex M Apr 10 at 1:46
whooo hoo that's even better! – mercury22 Apr 11 at 0:39
Yeah, I keep finding stuff like that myself. It's always fun to pass one on :). – Jacob Proffitt Apr 13 at 23:29
vote up 1 vote down

You can do this via reflection. Essentially, you iterate over the properties in your DataContext class. For each property, check to see if that property's generic parameter type has the TableAttribute attribute. If so, that property represents a table:

using System.Reflection;
using System.Data.Linq.Mappings;

PropertyInfo[] properties = typeof(MyDataContext).GetProperties();
foreach (PropertyInfo property in properties)
{
    if(property.PropertyType.IsGenericType)
    {
        object[] attribs = property.PropertyType.GetGenericArguments()[0].GetCustomAttributes(typeof(TableAttribute), false);
        if(attribs.Length > 0)
        {
            Console.WriteLine(property.Name);
        }
    }
}
link|flag
Damn it! You type too fast :P – SirDemon Apr 9 at 23:19
@SirDemon actually i completely got the answer wrong, deleted it, tested the right answer in Visual Studio, undeleted and revised :) – Rex M Apr 9 at 23:20
haha thank you very much, that was fast! – mercury22 Apr 9 at 23:25
Fast, but a bit over-complex when the Mapping property is right there in Linq to SQL. – Jacob Proffitt Apr 10 at 0:24

Your Answer

Get an OpenID
or

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