Hi, people!

Can I use LINQ with parameters?

For example, in SQL it´s possible:

SELECT @colum1, @colum2
from @table

Someone know´s that is possible to do the same thing in LINQ?

I tried to do, like this:

Dim db As New ReceitaDataContext
Dim command = From cla In bd.???? _
Select cla.????, cla.????

DataGridView.DataSource = Command.ToList