Microsoft.Spatial
6.4.0
Contains classes and methods that facilitate geography and geometry spatial operations. Support OData v4 only. Targets .NET Portable Lib with support for .NET 4.0, 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/
See the version list below for details.
Install-Package Microsoft.Spatial -Version 6.4.0
dotnet add package Microsoft.Spatial --version 6.4.0
<PackageReference Include="Microsoft.Spatial" Version="6.4.0" />
paket add Microsoft.Spatial --version 6.4.0
#r "nuget: Microsoft.Spatial, 6.4.0"
// Install Microsoft.Spatial as a Cake Addin
#addin nuget:?package=Microsoft.Spatial&version=6.4.0
// Install Microsoft.Spatial as a Cake Tool
#tool nuget:?package=Microsoft.Spatial&version=6.4.0
Release Notes
New Features
• ODataLib supports write & read async headers & payload.
• OData Client supports model reference.
• OData Client supports using enum in query options & operation parameter.
• Improves the API of OData client for server-side paging support.
Sample:
NorthwindEntities ctx = new NorthwindEntities(
new Uri(@"https://services.odata.org/V4/Northwind/Northwind.svc/"));
var customers = ctx.Customers.GetAllPages(); // automatically get all pages of the Customers entity set
foreach (var customer in customers)
{
Console.WriteLine(customer.CustomerID);
}
• ODataUriParser supports more type for ‘cast’ in $filter.
• OData Client supports new async API in .NET 4.0 format.
Sample:
var customers = await ctx.Customers.ExecuteAsync();
Bug Fixs
• Fix a bug for top level dynamic property payload don’t have @odata.type annotation.
• Fix a bug for Core annotation is not written in full namespace. For example term value will be “Org.OData.Core.V1.Description” instead of “Core.Description”.
Dependencies
This package has no dependencies.
Used By
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Microsoft.Spatial:
| Package | Downloads |
|---|---|
|
Microsoft.OData.Core
Classes to serialize, deserialize and validate OData JSON payloads. Supports OData v4 only. Enables construction of OData services and clients. Targets .NET Platform Standard 1.1. Localized for CHS, CHT, DEU, ESN, FRA, ITA, JPN, KOR and RUS.
OData .NET library is open source at http://github.com/OData/odata.net
|