I have a situation where I need to dynamically give the name of table for which table is being updated. The table name some how I obtain.I want to do something like this.
string tableName="Template";
dataContext.Update(tableName, "Id", newuser);
How is it possible?Please Help!!