Using this statement I am not getting any data:
Dim sFilter As String = "16,22,34"
e.QueryableSource = New myworkspace.myentity().mytable.Where(Function(p) sFilter.Split(",").Contains(p.mytablekey))
whereas I am with this statement (or with keys 22 or 34):
e.QueryableSource = New myworkspace.myentity().mytable.Where(Function(p) p.mytablekey= 16)
Why is the former statement not giving the desired result?