テーブルから一連のデータを返し、変数に基づいて列を選択する必要があります
コードは
Dim columnNo as Integer = 1
Dim rs as IEnumerable(Of Object) = db.ImportTable
For each rsRow in rs
Dim columnF1 = rsRow.f1 'where the field name is f1 (this works fine)
Dim columnVariable = rsRow."f" & columnNo 'This line fails
期待して感謝