query.ExecuteAsync(Function(op) op.Results.ForEach(Employees.Add))
also you can do this here: http://www.developerfusion.com/tools/convert/csharp-to-vb/
David
2010-04-20 18:37:02
query.ExecuteAsync(Function(op) op.Results.ForEach(Employees.Add))
also you can do this here: http://www.developerfusion.com/tools/convert/csharp-to-vb/
Starting with 2010, VB10 supports non-functional lambdas.
query.ExecuteAsync(Sub(op) op.Results.ForEach(Employees.Add))
Hi
I found the solution..
query.ExecuteAsync.Results.ForEach(Sub(o) Employees.Add(o))
Hope this helps to others