views:

38

answers:

1

Hi

I can build up a sql string by concatenating a string i.e.



String fieldname =”Company”;

String tableName= “Address”;

 “select  “+fieldname+” from “+tableName

How can I do this with Linq?

TIA

Stuart

+4  A: 

Scott Gu talks about Dynamic linq here

Paul Creasey