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
Install ...
Background
In , 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 and classes. We will not repeat that in this blog post. Bulk update and...
Background
The OData URI parser parses the $filter query to a FilterClause.
The translates an OData parse tree represented by a FilterClause to an Expression. The can be applied to an and passed to an ORM (e.g Entity Framework Core) for processing.
The contains the default implementation on how the Expressions should be created. This cr...
Introduction
In OData coreĀ v7.9.0 we added improved support for $count segment in $filter collection properties.
Previously, versions of OData core had support for:
We are constantly improving filtering capabilities in OData WebAPI. In OData WebApi v7.5.9 and OData WebApi v8.0.2, we have added support for the queries below
According to t...
OData Connected Service 0.8.0 has been released and is now available on the Visual Studio Marketplace.
The new version adds the following features:
ThereĀ instances where you want to re-use same configuration settings across multiple projects. Manually supplying the same settings every time you spin up a new project ...