The Open Data Protocol (OData) is a Web protocol for querying and updating data. It enables rich relational data that is accessible from nearly any platform by using web standards such as REST, AtomPub, and JSON.

learn more… | top users | synonyms

1
vote
1answer
13 views

How to inspect OData Command collection in Web API?

I have a Web API service exposing an OData API resource. The flow of logic is simple: the Get() method calls the repository to get all (people) and the filtering as a result from the OData commands on ...
0
votes
0answers
15 views

KendoUI DataSource - OData querystring from filter attribute

In a current project I would like to use the $http service of angular to make HTTP requests in my Kendo Data Sources, because I am using a response interceptor as described in this blog: ...
0
votes
0answers
10 views

OData4j API Explaination

I was wondering if anyone has seen any documentation on how to use the consumer.getEntity(Class clazz, String href) function. How do you tell OData4j how to parse the entity to the supplied class? ...
1
vote
2answers
29 views

Implementing OData with WebApi and Mapped Models

I am trying to implement OData in WebApi. I am using the repository pattern and EF5 (in the backend) which is still consistent with all the examples I have found. Here is where thing go wonky. I am ...
1
vote
1answer
52 views

Breeze.js : how to store an entity relation using the OData adapter

My goal is to persist a simple relationship between two breeze entities on my OData server. I've setup a server, I am able to: insert data query data create a relation between two entities ...
0
votes
1answer
16 views

Delete entry from database with WinJS and OData

I'm trying to delete an entry from the database by odata. I get the error message {"error":{"code":"","message":{"lang":"en-US","value":"Bad Request - Error in query syntax."}}} my code: function ...
0
votes
0answers
17 views

How call WebAPi in phonegap?

I am calling Web API by using Datajs and it is working in each browser but when i am calling this by Phonegap then i am getting error Http Request failed. function DefaultHandler() { var ...
0
votes
1answer
30 views

Breeze & OData: Trouble expanding a collection

What works: In Breeze I can execute this query: Q1 breeze.EntityQuery.from('accounts').where('id', 'eq', account_id) which results in this request: R1 ...
0
votes
1answer
12 views

OData - filter by nested property

does anyone know how to express an OData $filter against a nested property? for ex. I have the following Atom entry, <entry> ... <m:properties> ... <d:RegardingObjectId ...
0
votes
1answer
23 views

Is there a Silverlight LINQ-to-OData translater that can be used with Web API?

I am attempting to build a Silverlight application that talks to an ASP.NET Web API, however Web API doesn't provide the same client-side proxies as WCF Data Services making LINQ to OData a challenge. ...
0
votes
0answers
21 views

OData service for windows store apps

in my next windows store apps i want to use OData (WCF Data Service) i don't know how to create and consume OData Service so is there any example to jump start with OData for windows store app i ...
1
vote
0answers
38 views

Get NavigationProperty on OData does not work

The goal is to retrieve an object already loaded with their NavigationProperties: Problem Even informing $expand on OData URL, the navigation property is not loaded! Full image: ...
0
votes
1answer
42 views

Using OData actions

Versions To use features like $select and $expand upgraded all packages WebApi and OData for pre-release versions (from aspnetwebstack). Microsoft.AspNet.WebApi -> 5.0.0-beta1-130514 ...
0
votes
1answer
22 views

How to return a different object from the one you run a query on in OData?

I'm trying to return an object from the controller's Get method that is of a different class from the class the query is run on. Based on the answer here, this is what I'm doing: public ...
0
votes
1answer
30 views

WinJS OData JSON

try to send data to my database by web service an get this error: Primitive values of type 'Edm.Decimal' and 'Edm.Int64' must be quoted in the payload. Make sure the value is quoted here is my ...
1
vote
1answer
47 views

How can i expose dto objects using wcf data service with ef code first?

I am trying to make a wcf data service where i dont want to get acces to the database models but instead i want to use Data transfer objects. I have been reading a lot on the internet about how to ...
0
votes
1answer
22 views

Entity version in odata using accept header in web api

I am using Web API to create RESTful services. I decided to using Accept header as a api versioning mechanism by following this implementation. ...
0
votes
1answer
34 views

Appbar not working in windows phone 7 when using codes to navigate to another page

Appbar works great but when I use this.Content = new PAGE(Constructor1, Constructor1, Constructor1); to navigate to other page....App bar doesn't show up....:| Same Xaml works for other page what ...
0
votes
2answers
34 views

Include count of linked records in OData result

I've got a table "Events" with a linked table "Registrations", and I want to create an OData service that returns records from the Events table, plus the number of registrations for each event. The ...
0
votes
1answer
39 views

How to transform LINQ filter expression to SQL Query?

I'm wondering how I can transform a FilterExpression in LINQ into a SQL clause. {it => (IIF((it.DatasetTitle == null), null, Convert("Ref".Contains(it.DatasetTitle))) == Convert(True))} Are ...
0
votes
0answers
15 views

How do you expose a Grails domain model using OData?

Ideally there would be a plugin that automatically exposed the Grails domain model as OData but I can't see one. There is OData4j which will let you expose POJOs or JPA as OData however it uses ...
0
votes
0answers
34 views

Using Expand on List property: The argument must be of type 'IEnumerable'. OData

I use Asp.Net Web Api with OData(5.5.0-alpha2). And I have a model: public class Model { public List<Event> Events { get; set; } public List<User> Subscribers { get; set; } ...
1
vote
1answer
24 views

OData Action without a target entity

Is it possible to have an OData Action that is not bound to a particular entity or instance, but rather can be invoked upon a collection? Such as... ...
1
vote
1answer
49 views

How can I get Breeze to query $metadata instead of Metadata?

I set up my odata service with Node, MongoDB and JayData. When I hit http://localhost:8000/odata/findash.svc/$metadata in my browser I get the metadata exactly as I would expect. In the browser ...
1
vote
1answer
61 views

OData Web API not supporting Chrome and Firefox

i have created a Web API with oData and calling by datajs so it is running fine for IE but not in other browsers. The code is as below my Controller class is public class CompanyController: ...
0
votes
0answers
13 views

Interceptors in WCF data service

using ChangeInterceptors I can perform custom modifications on the objects currently being processed. Using QueryInterceptors I can only influence whether an object is returned by the wcf or not. Is ...
0
votes
1answer
31 views

Is there a way to represent summary rows with OData?

I'm trying to tack on additional information to the list of items returned from an ODataController's method. The use case is summary rows. So we basically want to return the rows of the report and ...
-1
votes
0answers
28 views

Insert rows into tables using OData POST

What is the standard method to insert data into a table, update a table, delete rows in a table using OData? My front end is SAP UI5 and the tables are stored on a HANA SYSTEM. Do i have to use a POST ...
0
votes
1answer
58 views

Why doesn't my oData response have navigation properties

If you look at the following sample oData feed you'll see included navigation properties for 'child' items to tell you which URL to follow: ...
0
votes
1answer
44 views

How to transform OData filter to a LINQ expression?

I'm trying to extract the filter expression from ODataQueryOptions so that I can use it in my business logic class. public PageResult<Poco> Get(ODataQueryOptions odataQueryOptions) { ...
0
votes
2answers
53 views

Caching Data in Web API

I have the need to cache a collection of objects that is mostly static (might have changes 1x per day) that is avaliable in my ASP.NET Web API OData service. This result set is used across calls ...
0
votes
0answers
56 views

The best way to modify a WebAPI OData QueryOptions.Filter

I am using the OData sample project at http://www.asp.net/web-api/overview/odata-support-in-aspnet-web-api/working-with-entity-relations. In the Get I want to be able to change the Filter in the ...
0
votes
1answer
44 views

Call a WCF Data service boolean method

I'm trying to receive an answer from a WCF method from the client. When I try to execute void methods, they are working fine. For example: Uri u = new Uri(string.Format(LogIn.ctx.BaseUri + ...
0
votes
1answer
37 views

How to do custom paging with EntitySetController

I'm trying to implement custom paging with the EntitySetController. public class MyController : EntitySetController<Poco, int> { public IQueryable<Poco> Get() { var result ...
0
votes
1answer
22 views

Install-Package LinqToQuerystring.WebApi

I'm working on OData JSon Plugin for MyPrettyCMS (ASP.net MVC4 Open source project). I found the project : https://github.com/Roysvork/LinqToQuerystring It seems to respond to my needs. I follow ...
0
votes
1answer
43 views

Patch entity with delta

I have an override that patches an entity. protected override Books PatchEntity(int key, Delta<Books> patch) { var Book = db.books.FirstOrDefault(p => p.ID== key); if (OtDaily == ...
1
vote
1answer
38 views

Model Tracking In Entity Framework

We were using Microsoft WCF Web Services and Entity Framework ORM in our project. When client call each Web Services,Entity Framework keep state of each model in memory for tracking model state for ...
0
votes
1answer
54 views

OData without IQueryable

I’m thinking of using OData for my web service (based on Web API). Unfortunately, my datasource is NOT IQueryable. Instead of implementing my own IQueryable I pretty much followed this blog post. ...
0
votes
2answers
48 views

Breezejs: Perform search on field in related table

I have followed tutorials / videos showing off how to perform a live search on data coming from two entities on the northwind database running on a Microsoft backend. I have to develop an ...
0
votes
1answer
37 views

Why does calling .All() on sub entities in WCF Data Services client return base entities when no sub entity exists?

When querying for sub entities from the client via WCF Data Services, the .All() query returns base entities that have no sub entities. For example, imagine a database that only has two Customers in ...
0
votes
1answer
60 views

Issue Using Fiddler for HTTP GET Containing OData Commands

I am trying to use Fiddler to do an HTTP GET to my ASP.NET Web API Odata endpoint service. The URL contains OData commands to filter the results. I can use a browser or the Google extension 'Postman' ...
0
votes
0answers
20 views

OData and Security in .NET

This great video http://msdn.microsoft.com/en-us/data/gg601461 shows us how to expose OData from any source. But it is still unclear for me which types of security we can apply to restrict users' ...
1
vote
1answer
40 views

Why can't I use LINQ's First/FirstOrDefault method in OData?

I can do the following: container.Users.Where(u => u.Name == "Omar").FirstOrDefault() but container.Users.FirstOrDefault(u => u.Name == "Omar") returns a NotSupportedException (The method ...
0
votes
1answer
54 views

Cannot Resolve MapODataRoute for a Web API OData Endpoint

I'm trying to configure an OData endpoint for my Web API service and I can not resolve the MapODataRoute method. As per this tutorial the following is stated about the requirments: ASP.NET and Web ...
0
votes
1answer
24 views

Retrieving entries by key without using filter in Breezejs

When we query for an entity in Breezejs with its key, the framework is creating an url using the $filter property. /api/orderCollection?$filter=orderId%20eq%20'0001' Is it possible to force breeze ...
0
votes
1answer
28 views

Best approach for generic filtering/sorting with REST

We are building a .NET-based REST API that will be used by our single-page JavaScript app and potentially other consumers in the future. The app will have many grids displaying data and allowing the ...
0
votes
1answer
77 views

Prevent WebAPI OData Controllers names clashing?

I have a WebAPI project hosted in Azure which provides JSON web service for a mobile app. I now want to add an OData service to provide data to business users. It looks difficult to to get two ...
0
votes
2answers
133 views

Breeze.js with asp.net web api odata and code first

I'm currently working on a proof of concept relating these technologies. I've basically implemented what is suggested in this article, with the exception of using EF code first. Consuming an ASP.NET ...
0
votes
1answer
81 views

POST to Web API OData, the entity that is received is null

I'm trying to send data to Web API using OData. But the entity which is received is always null. I have this call using JQuery: $.ajax({ url: "/odata/Products", type: ...
0
votes
1answer
34 views

web services for win 8 phone app development

I am looking for a library for odata services. Is there even such a thing? Like if I want to develop an app for craigslist and I want to know what services are available to out there, to check that ...

1 2 3 4 5 24