OData Create and consume RESTful APIs in a simple and standard way
- Announcing ASP.NET Core OData 9 Official Releaseby John Gathogo on August 30, 2024 at 9:00 am
We’re happy to announce that ASP.NET Core OData 9 has been officially released and is available on NuGet: Microsoft.AspNetCore.OData 9.0.0 The major highlight of this release is the update of the OData .NET dependencies to the 8.x major version. By updating the dependencies, we’re able to take advantage of the improvements and new capabilities introduced The post Announcing ASP.NET Core OData 9 Official Release appeared first on OData.
- Announcing OData .NET 8 Official Releaseby Clément Habinshuti on August 12, 2024 at 9:13 pm
We’re happy to announce that OData .NET 8 has been officially released and is available on NuGet: Microsoft.OData.Core 8.0.0 Microsoft.OData.Edm 8.0.0 Microsoft.OData.Client 8.0.0 Microsoft.Spatial 8.0.0 We would like to thank the community for trying out the pre-release versions and sharing feedback with us following our announcements of the previews and release candidates. This release presents The post Announcing OData .NET 8 Official Release appeared first on OData.
- Announcing OData .NET 8 Release Candidate 1by Elizabeth Okerio on July 12, 2024 at 8:26 am
OData .NET 8.0 RC1 is now available, bringing numerous significant improvements to the following libraries: Microsoft.OData.Core Microsoft.OData.Edm Microsoft.Spatia Microsoft.OData.Client This is the final release candidate before the official launch of these libraries, scheduled for August 12th. Most of the planned features and changes are included in this release candidate and are ready for you to The post Announcing OData .NET 8 Release Candidate 1 appeared first on OData.
- Microsoft.AspNetCore.OData 9 Preview Releaseby Elizabeth Okerio on June 12, 2024 at 5:04 pm
We are excited to announce the forthcoming major release of Microsoft.AspNetCore.OData, scheduled for June. In preparation for this significant update, we have made preview versions of the library available to gather early feedback from our community. The following preview release is now available on NuGet: Microsoft.AspNetCore.OData 9.0.0-preview.2 Key Update The primary change in this release The post Microsoft.AspNetCore.OData 9 Preview Release appeared first on OData.
- OData .NET 8 Preview Releaseby Clément Habinshuti on April 26, 2024 at 6:38 pm
We would like to announce that we are planning a new major release of OData .NET core libraries in June. Ahead of this release, we have released preview versions of the libraries to get some early feedback from the community. Specifically, the following preview releases are now available on NuGet: Microsoft.OData.Core 8.0.0-preview.1 Microsoft.OData.Edm 8.0.0-preview.1 Microsoft.OData.Client The post OData .NET 8 Preview Release appeared first on OData.
- Deep insert support in OData clientby Kennedy Kangethe Munga on September 22, 2023 at 1:27 pm
In the Deep insert support in OData webapi blog post, we demonstrated how to add deep insert capabilities to an OData service. In this blog post, we demonstrate how to add deep insert capabilities in OData client. In the following sections, we implement a client app. Create a Console application Start Visual Studio 2022 and The post Deep insert support in OData client appeared first on OData.
- Working with media resources in OData – Part 2by John Gathogo on August 8, 2023 at 12:34 pm
In Part 1 of this blog post, we demonstrated how to implement an OData service that serves media resources. In Part 2, we look at how to implement a client app that interacts with the OData binary large object (BLOB) feed to both retrieve and post binary data along with the metadata for the media The post Working with media resources in OData – Part 2 appeared first on OData.
- Working with media resources in OData – Part 1by John Gathogo on August 8, 2023 at 12:33 pm
OData enables you to define data feeds that serve binary large object (BLOB) data. In OData lingo, this binary data is referred to as a media resource. A media resource (MR) is an unstructured piece of data or stream, e.g., a document, image, or video. It is requested from the data service separately from the The post Working with media resources in OData – Part 1 appeared first on OData.
- Enable Un-typed within ASP.NET Core ODataby Sam Xu on June 19, 2023 at 5:14 pm
Introduction The latest ASP.NET Core OData supports the following two built-in OData abstract types: Edm.Untyped Collection(Edm.Untyped) Developers can use them to advertise a property in OData metadata schema (aka, Edm model) so that such property is declared with a particular name present, but there is no type associated to describe the structure of the property’s The post Enable Un-typed within ASP.NET Core OData appeared first on OData.
- Deep insert support in OData Web APIby Kennedy Kangethe Munga on June 9, 2023 at 7:36 am
Background In OData Web API 7.7.0, we added support for deep insert. In deep insert, we create an object and its related items or link existing items in a single request. This blog post is a continuation of Bulk Operations Support in OData Web API. In that blog post, we explained how to use ODataAPIHandler and The post Deep insert support in OData Web API appeared first on OData.