I'm new to F# and trying to recreate some simple apps that I've built in the past with C# or Powershell. I'm trying to get multiple properties for a web. In F#, I can get a single property, but I'm not sure the syntax that would work for getting multiple properties at once.
As an example:
// F# Example
context.Load(web |> fun w->w.Lists)
context.Load(web |> fun w->w.AssociatedOwnerGroup)
context.ExecuteQuery()
Is there a way in F# to combine that into a single line? In C# I'd call it like so:
// C# Example
context.Load(web, w => w.Lists, w => w.AssociatedOwnerGroup);
context.ExecuteQuery();