Select-OData Cmdlet
Searches OData data.
Syntax
Select-OData [parameters]
Remarks
The Select-OData cmdlet allows you to use a syntax similar to SQL SELECT statements to search OData data.
$conn = Connect-OData -User 'MyUser' -Password 'MyPassword' -URL 'http://myserver/myOrgRoot' Select-OData -Connection $conn -Table "Lead" -Columns @("Id","FullName") -Where "FirstName='Bartholomew'"