Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm tryng to have only one select in my method. That method will select a table based in a defined string and execute a select.

private static void Load()
{
    DataClassesDataContext contexto = new DataClassesDataContext();
    IQueryable newTable = null;

    string tabela = "A";

    switch (tabela)
    {

        case "A":
            newTable = contexto.GetTable<Table2>();
            break;
        case "B":
            newTable = contexto.GetTable<Table1>();
            break;
        default:
            break;
    }

    var genericQuery = from a in newTable
                       select a;
}

What can I do to have genericQuery with the right table values?

share|improve this question

1 Answer

up vote 0 down vote accepted

This won't work unless you genericize the Load method:

private static void Load<T>()
{
   ...
   var genericQuery = contexto.GetTable<T>();
   ...
}
share|improve this answer
and how does one specify the table with this code snippet? – wullxz Jan 30 at 22:12
You'd call Load<Table2>() – Judah Himango Jan 31 at 4:00
I can´t call Load in that way, I only know the type of T inside the switch statement! – JoaxAzevedo Jan 31 at 13:30
What are you trying to do with genericQuery? I don't understand what problem you're hitting. – Judah Himango Jan 31 at 15:23
I need to have the result of a selected table based in the value of the string tabela. I don't know the selected table before call Load method. – JoaxAzevedo Jan 31 at 16:14
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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