Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Sorry if I didn't explained it right in the title, but here it goes:

I want to do execute a LINQ query, and I have the name of the table to query stored in a variable:

string tableName = "SomeTable";

DataContext db = new DataContext();

var vResult = from t in db.tableName
where t.Id = ....
share|improve this question
2  
Why do you have the table name in a string? – Lasse V. Karlsen Jul 30 '10 at 18:08
I have this tables: Modification, Requirement and Modification_has_Requirement some requirements are need to update some tables, others doesn`t – Vitor Reis Jul 30 '10 at 18:14

2 Answers

Use Reflection on the DataContext to find a property named tableName

share|improve this answer

You might want to look at DataContext.ExecuteQuery<T>. However, that still doesn't solve the problem that your results might be different types.

share|improve this answer

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.