Microsoft.OData.Client
                              
                            
                                6.2.0
                            
                        
                            
                                
                                
                                    Prefix Reserved
                                
                            
                    See the version list below for details.
dotnet add package Microsoft.OData.Client --version 6.2.0
NuGet\Install-Package Microsoft.OData.Client -Version 6.2.0
<PackageReference Include="Microsoft.OData.Client" Version="6.2.0" />
<PackageVersion Include="Microsoft.OData.Client" Version="6.2.0" />
<PackageReference Include="Microsoft.OData.Client" />
paket add Microsoft.OData.Client --version 6.2.0
#r "nuget: Microsoft.OData.Client, 6.2.0"
#:package Microsoft.OData.Client@6.2.0
#addin nuget:?package=Microsoft.OData.Client&version=6.2.0
#tool nuget:?package=Microsoft.OData.Client&version=6.2.0
LINQ-enabled client API for issuing OData queries and consuming OData JSON payloads. Supports OData v4 only. Targets .NET 4.0, and .NET Portable Lib with support for .NET 4.5, SL 5.0, Win Phone 8, and Win 8. Localized for CHS, CHT, DEU, ESN, FRA, ITA, JPN, KOR and RUS.
OData .NET library is open source at https://odata.codeplex.com/
| Product | Versions Compatible and additional computed target framework versions. | 
|---|---|
| .NET Framework | net40 is compatible. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. | 
- 
                                                - Microsoft.OData.Core (= 6.2.0)
 
GitHub repositories (16)
Showing the top 16 popular GitHub repositories that depend on Microsoft.OData.Client:
| Repository | Stars | 
|---|---|
| microsoft/fluentui-blazor 
                                                            Microsoft Fluent UI Blazor components library. For use with ASP.NET Core Blazor applications
                                                         | |
| pnp/PnP 
                                                            SharePoint / Office 365 Developer Patterns and Practices - Archived older solutions. Please see https://aka.ms/m365pnp for updated guidance
                                                         | |
| OfficeDev/Microsoft-Teams-Samples 
                                                            Welcome to the Microsoft Teams samples repository. Here you will find task-focused samples in C#, JavaScript and TypeScript to help you get started with the Microsoft Teams App!
                                                         | |
| OfficeDev/TrainingContent 
                                                            Training Content used for developer.microsoft.com/office
                                                         | |
| OData/WebApi 
                                                            OData Web API: A server library built upon ODataLib and WebApi
                                                         | |
| OData/odata.net 
                                                            ODataLib: Open Data Protocol - .NET Libraries and Frameworks
                                                         | |
| telerik/xaml-sdk 
                                                            The XAML SDK is an easy-to-use infrastructure with 1000+ developer focused examples for most of the Telerik UI for WPF controls. 
                                                         | |
| 6bee/Remote.Linq 
                                                            Simply LINQ your remote resources...
                                                         | |
| microsoft/Dynamics-AX-Integration 
                                                            Dynamics AX Integration samples and demos.
                                                         | |
| OData/ODataSamples 
                                                            Samples: For ODataLib, OData Web API, RESTier, etc.
                                                         | |
| zLulus/NotePractice 
                                                            My_Note 笔记练习demo
                                                         | |
| hougaard/Youtube-Video-Sources 
                                                            All the source code from my Youtube videos
                                                         | |
| znlgis/sod 
                                                            PDF.NET 的追求:代码的精简,开发、维护的简单与极致的运行效率!
                                                         | |
| voronov-maxim/OdataToEntity 
                                                            OData .net core
                                                         | |
| telerik/kendo-ui-demos-service 
                                                            Back-end service used for the Kendo UI Online Demos
                                                         | |
| microsoft/Vipr 
                                                            Client Library Generation Toolkit
                                                         | 
| Version | Downloads | Last Updated | 
|---|---|---|
| 7.5.1 | 34 | 9/17/2018 | 
| 6.16.0 | 39 | 4/3/2017 | 
| 6.11.0 | 10,733 | 3/30/2015 | 
| 6.10.0 | 4,198 | 2/6/2015 | 
| 6.9.0 | 3,745 | 12/10/2014 | 
| 6.8.1 | 12,161 | 10/20/2014 | 
| 6.8.0 | 1,060 | 9/23/2014 | 
| 6.7.0 | 1,587 | 8/29/2014 | 
| 6.6.0 | 3,541 | 7/31/2014 | 
| 6.5.0 | 2,701 | 6/30/2014 | 
| 6.4.0 | 497 | 5/30/2014 | 
| 6.3.0 | 1,289 | 4/28/2014 | 
| 6.2.0 | 415 | 4/1/2014 | 
| 6.1.0 | 90 | 3/4/2014 | 
| 6.0.0 | 222 | 1/27/2014 | 
| 6.0.0-beta1 | 105 | 12/9/2013 | 
| 6.0.0-alpha2 | 61 | 11/7/2013 | 
| 6.0.0-alpha1 | 72 | 10/4/2013 | 
What is in the release:
 
Bug fixes: 
•   Fixed a bug for parsing $it in UriParser
•   Improved the JSON serialization performance for unindented format
 
New Features: 
•   ODataLib & EdmLib now supports complex type inheritance and open complex type. 
•   ODataLib & EdmLib now supports open collection property in entity and complex type. 
•   OData Client now supports property level change tracking for PATCH.
DataServiceCollection now supports property level change tracking. By default only changed properties will be included in the payload for update (PATCH) operations, unless you explicitly use SaveChangesOptions.ReplaceOnUpdate when calling SaveChanges(). The entity level change tracking behavior is not changed in DataServiceCollection.
 
•   OData Client supports using different type/property name than the name in metadata by OrginalNameAttribute
Previously the type and property name in proxy class must be same as metadata. Now you can use over-write the type/property name by using OriginalNameAttribute:
 
    [global::Microsoft.OData.Client.OriginalNameAttribute("product")]    
    public partial class Product
    {
        // Using camel case in metadata	
        [global::Microsoft.OData.Client.OriginalNameAttribute("name")]
        // Using Pascal case in proxy class
        public string Name
        {
            get;
            set;
        }
    }
 
•   ODataLib support generating ServiceDocument from EdmModel directly by extension method GenerateServiceDocument().
 
Known Issues:
•   Type casting for complex type in $filter and $select is not supported.
•   Reading individual property of derived complex type directly by OData Client is not supported.