TableAttribute.Filter 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 an OData table filter. RowKey should be null when setting this property.
For example, to filter on a LastName and FirstName property within an entity, you might set the Filter as follows:
Filter = "LastName%20eq%20'Smith'%20and%20FirstName%20eq%20'John'"
To learn more about constructing OData filter strings, see https://docs.microsoft.com/en-us/rest/api/storageservices/querying-tables-and-entities#constructing-filter-strings.
[Microsoft.Azure.WebJobs.Description.AutoResolve(ResolutionPolicyType=typeof(Microsoft.Azure.WebJobs.Extensions.Tables.ODataFilterResolutionPolicy))]
public string Filter { get; set; }
[<Microsoft.Azure.WebJobs.Description.AutoResolve(ResolutionPolicyType=typeof(Microsoft.Azure.WebJobs.Extensions.Tables.ODataFilterResolutionPolicy))>]
member this.Filter : string with get, set
Public Property Filter As String
Property Value
- Attributes
-
Microsoft.Azure.WebJobs.Description.AutoResolveAttribute