VB.NET相当于这个C#代码?
ctx.Load(site,
x => x.Lists.Where(l => l.Title != null));
Run Code Online (Sandbox Code Playgroud)
我试过了
ctx.Load(site, Function(x) x.Lists.Where(Function(l) l.Title IsNot Nothing))
Run Code Online (Sandbox Code Playgroud)
但这个错误 "The expression (Convert(l.Title) != null) is not supported."
思考