VB.NET эквивалентен этому С# -коду?
ctx.Load(site,
x => x.Lists.Where(l => l.Title != null));
Я пробовал
ctx.Load(site, Function(x) x.Lists.Where(Function(l) l.Title IsNot Nothing))
но эти ошибки с "The expression (Convert(l.Title) != null) is not supported."
Мысли