ODataServerModeSource.Query Property
In This Article
Specifies the query request to the OData service.
Namespace: DevExpress.Data.ODataLinq
Assembly: DevExpress.Data.v24.2.dll
NuGet Package: DevExpress.Data
#Declaration
[DefaultValue(null)]
public IQueryable Query { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
IQueryable | null | An IQueryable object that specifies the query request to the OData service. |
#Remarks
Pass the Microsoft.OData.Client.DataServiceQuery<T> object to this property (see OData Client for .NET).
See Also