ODATADetailLevel.FilterClause Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the OData filter clause. Used to restrict a list operation to items that match specified criteria.
public string FilterClause { get; set; }
member this.FilterClause : string with get, set
Public Property FilterClause As String
Property Value
Remarks
This is an optional OData $filter expression string (see the OData specification). For example, you can restrict a ListPools(DetailLevel, IEnumerable<BatchClientBehavior>) operation to return only active pools with the expression state eq 'active'
.
Filters must be specified using REST API attribute names, not .NET property names.
The default is no filter expression, which means all resources are returned.
Applies to
Azure SDK for .NET