Microsoft.OData.Core 6.7.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Microsoft.OData.Core --version 6.7.0
NuGet\Install-Package Microsoft.OData.Core -Version 6.7.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.OData.Core" Version="6.7.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Microsoft.OData.Core --version 6.7.0
#r "nuget: Microsoft.OData.Core, 6.7.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.
// Install Microsoft.OData.Core as a Cake Addin
#addin nuget:?package=Microsoft.OData.Core&version=6.7.0

// Install Microsoft.OData.Core as a Cake Tool
#tool nuget:?package=Microsoft.OData.Core&version=6.7.0

Classes to serialize, deserialize and validate OData JSON payloads. Supports OData v4 only. Enables construction of OData producers and consumers. Targets .NET Portable Lib with support for .NET 4.0, SL 5.0, Win Phone 8, Win Phone 8.1, 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/

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

GitHub repositories (29)

Showing the top 5 popular GitHub repositories that depend on Microsoft.OData.Core:

Repository Stars
smartstore/SmartStoreNET
Open Source ASP.NET MVC Enterprise eCommerce Shopping Cart Solution
Squidex/squidex
Headless CMS and Content Managment Hub
pnp/PnP
SharePoint / Office 365 Developer Patterns and Practices - Archived older solutions. Please see https://aka.ms/m365pnp for updated guidance
grandnode/grandnode
Open source, headless, multi-tenant eCommerce platform built with .NET Core, MongoDB, AWS DocumentDB, Azure CosmosDB, Vue.js.
OfficeDev/TrainingContent
Training Content used for developer.microsoft.com/office
Version Downloads Last updated
7.5.1 6 9/17/2018
6.16.0 46 4/3/2017
6.11.0 27,611 3/30/2015
6.10.0 21,087 2/6/2015
6.9.0 17,766 12/10/2014
6.8.1 22,373 10/20/2014
6.8.0 5,212 9/23/2014
6.7.0 4,509 8/29/2014
6.6.0 4,860 7/31/2014
6.5.0 21,866 6/30/2014
6.4.0 10,725 5/30/2014
6.3.0 1,606 4/28/2014
6.2.0 437 4/1/2014
6.1.0 115 3/4/2014
6.0.0 376 1/27/2014
6.0.0-beta1 202 12/9/2013
6.0.0-alpha2 63 11/7/2013
6.0.0-alpha1 59 10/4/2013

Features:

1. EdmLib supports a list of additional core vocabulary terms
   -  IsLanguageDependent
   -  RequiresType
   -  ResourcePath
   -  DereferenceableIDs
   -  ConventionalIDs
   -  Immutable
   -  Computed
   -  IsURL
   -  AcceptableMediaTypes
   -  MediaType
   -  IsMediaType
2. EdmLib supports adding metadata annotations to elements in Edm model.
3. ODataLib supports computing Uri with KeyAsSegment convention for deserializing.
4. ODataUriParser supports Enum value as an entity key
5. ODataLib supports overriding default Uri parsing behavior, including:
   -  Resolving property name
   -  Resolving type name
   -  Resolving navigation source name
   -  Resolving operation import name
   -  Resolving bound operation name
   -  Resolving function parameters
   -  Resolving entity set key
   -  Resolving binary operator node elements

    We have also provided built-in implementations to enable following scenarios:

   1) Case insensitive for built in identifiers, including:
       •  In path segment
           $batch, $metadata, $count, $ref, $value
       •  In query options
           $id, $select, $expand(including nested query options), $levels, $filter, $orderby, $skip, $top, $count, $search, max, asc, desc, any, all, contains, startswith, endswith, length, indexof, substring, tolower, toupper, trim, concat, year, month, day, hour,  minute, second, fractionalseconds, totalseconds, totaloffsetminutes, mindatetime maxdatetime, now, and, or, eq, ne, lt, le, gt, ge, has, add, sub, mul, div, mod, not, round, floor, ceiling, isof, cast, geo.distance, geo.length, geo.intersects
       •  $it, true, false, null, are not supported and should be case sensitive
       •  AND, OR, NOT for $search are not supported and should be case sensitive

   2) Case insensitive for user metadata, including :
       •  EntitySet/Singleton Name
       •  EntitySet key predicate name
       •  Property Name
       •  Type Name
       •  FunctionImport name/parameter name
       •  ActionImport name
       •  Bound function name/parameter name
       •  Bound action name

   3) Unqualified function call, including:
       •  Bound function call without namespace prefix
       •  Bound action call without namespace prefix

   4) Omitting Enum type name prefix for Enum value, including:
       •  Omitting Enum type prefix in binary operator
       •  Omitting Enum type prefix in entity set key value
       •  Omitting Enum type prefix in function parameter
                               
Bug fixes:

1. Fixes a bug that DataServiceCollection<T> constructor runs into stack overflow when parameter T derives from a generic type of T.
2. Fixes a bug that Edm validator doesn't correctly report error when the Edm model contains dupped key properties.