hi
My code that can get tablename in linq query is:
Dim TY As Type = (From T In DB.Mapping.GetTables()
Where T.TableName = tableN
Select T.RowType.Type).SingleOrDefault
Dim Table As ITable = DB.GetTable(TY)
Dim mq = From t In Table Select t
tableN get from another form. I want to access the fileld of Table and use in linq query .how?
for example:
Dim mq = From t In Table Select t.Code
please help me