Microsoft.Data.Services 5.3.0

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Microsoft.Data.Services --version 5.3.0
                    
NuGet\Install-Package Microsoft.Data.Services -Version 5.3.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Microsoft.Data.Services" Version="5.3.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Microsoft.Data.Services" Version="5.3.0" />
                    
Directory.Packages.props
<PackageReference Include="Microsoft.Data.Services" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Microsoft.Data.Services --version 5.3.0
                    
#r "nuget: Microsoft.Data.Services, 5.3.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Microsoft.Data.Services@5.3.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Microsoft.Data.Services&version=5.3.0
                    
Install as a Cake Addin
#tool nuget:?package=Microsoft.Data.Services&version=5.3.0
                    
Install as a Cake Tool

Fully-featured server API for responding to OData queries and consuming/producing OData payloads. Supports OData v3. Targets .NET 4.0 or Silverlight 4.0. Localized for CHS, CHT, DEU, ESN, FRA, ITA, JPN, KOR and RUS.

Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

GitHub repositories (6)

Showing the top 6 popular GitHub repositories that depend on Microsoft.Data.Services:

Repository Stars
NuGet/NuGetGallery
NuGet Gallery is a package repository that powers https://www.nuget.org. Use this repo for reporting NuGet.org issues.
rstropek/Samples
OData/ODataSamples
Samples: For ODataLib, OData Web API, RESTier, etc.
Windows-XAML/201505-MVA
azureautomation/azure-automation-ise-addon
The Azure Automation PowerShell ISE Add-On makes it easy to author and test your runbooks in your local PowerShell ISE
pcibraro/hawknet
Hawk protocol implementation for .NET
Version Downloads Last Updated
5.6.4 10,239 3/30/2015
5.6.3 14,294 10/21/2014
5.6.2 10,693 8/4/2014
5.6.1 8,546 2/25/2014
5.6.0 39,552 8/16/2013
5.6.0-rc1 62 7/30/2013
5.6.0-alpha1 63 6/29/2013
5.5.0 2,258 5/30/2013
5.5.0-rc1 49 5/14/2013
5.5.0-alpha2 51 4/26/2013
5.5.0-alpha1 50 4/9/2013
5.4.0 1,247 4/2/2013
5.4.0-rc1 55 3/19/2013
5.3.0 775 2/18/2013
5.3.0-rc1 112 1/31/2013
5.2.0 673 12/17/2012
5.2.0-rc1 53 12/3/2012
5.1.0 1,165 11/7/2012
5.1.0-rc2 85 9/21/2012
5.1.0-rc1 121 7/11/2012
5.0.2 1,191 8/29/2012
5.0.2-rc 54 8/15/2012
5.0.1 426 5/18/2012
5.0.1-rc 50 5/8/2012
5.0.0.50403 1,238 4/11/2012

What's new in this release:

Instance annotations on feeds and entries (JSON only)
Instance annotations are an extensibility feature in OData feeds that allow OData requests and responses to be marked up with annotations that target feeds, single entities (entries), properties, etc. WCF Data Services 5.3.0 supports instance annotations in JSON payloads. Support for instance annotations in Atom payloads is forthcoming.

Action Binding Parameter Overloads
The OData specification allows actions with the same name to be bound to multiple different types. WCF Data Services 5.3 enables actions for different types to have the same name (for instance, both a Folder and a File may have a Rename action). This new support includes both serialization of actions with the same name as well as resolution of an action’s binding parameter using the new IDataServiceActionResolver interface.

Modification of the Request URL
For scenarios where it is desirable to modify request URLs before the request is processed, WCF Data Services 5.3 adds support for modifying the request URL in the OnStartProcessingRequest method. Service authors can modify both the request URL as well as URLs for the various parts of a batch request.

This release also contains the following noteworthy bug fixes:
- Fixes an issue where code gen produces invalid code in VB
- Fixes an issue where code gen fails when the Precision facet is set on spatial and time properties
- Fixes an issue where code gen was incorrectly generating the INotifyPropertyChanged code for subtypes in different namespaces
- Fixes an issue where odata.type was not written consistently in fullmetadata mode for JSON
- Fixes an issue where a valid form of Edm.DateTime could not be parsed
- Fixes an issue where the WCF DS client would not send type names for open properties on insert/update
- Fixes an issue where the client Execute() method would fail for a particular payload with DataServiceVersion=1.0
- Fixes an issue where type information was omitted in JSON fullmetadata payloads
- Fixes an issue where open property type information was omitted in JSON update/insert requests
- Fixes an issue where it was not possible to navigate relationships on entities with multi-part keys