Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to generate odata v4 c# proxy client for Visual Studio 2017?

Where can i get odata v4 c# proxy generator for Visual Studio 2017? The existing one is for 2015 only.

like image 686
Horosho Avatar asked Apr 24 '17 11:04

Horosho


People also ask

What is OData V4?

The Open Data Protocol (OData) enables the creation of REST-based data services, which allow resources, identified using Uniform Resource Locators (URLs) and defined in an Entity Data Model (EDM), to be published and edited by Web clients using simple HTTP messages.

What is OData C#?

The Open Data Protocol (OData) is a data access protocol for the web. OData provides a uniform way to query and manipulate data sets through CRUD operations (create, read, update, and delete).


2 Answers

VS 2017 is now supported in "OData Connected Service" extension. install it and add your reference from:

Service Refernces --> Add Connected Service --> OData Connected Service
like image 100
NACER Idris Avatar answered Sep 25 '22 05:09

NACER Idris


You can use the download button on this page. You have run the installer and then it works fine with VS2017.

The extension will not show up in the Tools --> Extensions window, but it will add the 'OData client' as an option in 'add new item'.

Tested this with Visual Studio 2017 enterprise V15.1


Edit: Apparently VS2017 is supported again since version 7.4.2 beta, thanks @linac.

like image 26
GWigWam Avatar answered Sep 22 '22 05:09

GWigWam